{ "openapi": "3.0.1", "info": { "title": "OData Service for namespace microsoft.graph", "description": "This OData service is located at https://graph.microsoft.com/beta", "version": "1.0.1" }, "servers": [ { "url": "https://graph.microsoft.com/beta" } ], "paths": { "/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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "description", "targetTypes", "properties", "status", "owner" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "x-ms-docs-operation-type": "operation" }, "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: schemaExtension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "schemaExtension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "description", "targetTypes", "properties", "status", "owner" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: schemaExtension-id", "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: schemaExtension-id", "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" } }, "/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", "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", "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" } }, "x-ms-docs-operation-type": "operation" }, "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: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: directoryObject-id", "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: directoryObject-id", "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" } }, "/applications": { "get": { "tags": [ "applications.application" ], "summary": "Get entities from applications", "operationId": "applications.application.ListApplication", "parameters": [ { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/search" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "api", "api desc", "appId", "appId desc", "appRoles", "appRoles desc", "createdDateTime", "createdDateTime desc", "isFallbackPublicClient", "isFallbackPublicClient desc", "identifierUris", "identifierUris desc", "displayName", "displayName desc", "info", "info desc", "keyCredentials", "keyCredentials desc", "logo", "logo desc", "optionalClaims", "optionalClaims desc", "orgRestrictions", "orgRestrictions desc", "parentalControlSettings", "parentalControlSettings desc", "passwordCredentials", "passwordCredentials desc", "publicClient", "publicClient desc", "publisherDomain", "publisherDomain desc", "requiredResourceAccess", "requiredResourceAccess desc", "signInAudience", "signInAudience desc", "tags", "tags desc", "tokenEncryptionKeyId", "tokenEncryptionKeyId desc", "web", "web desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "api", "appId", "appRoles", "createdDateTime", "isFallbackPublicClient", "identifierUris", "displayName", "info", "keyCredentials", "logo", "optionalClaims", "orgRestrictions", "parentalControlSettings", "passwordCredentials", "publicClient", "publisherDomain", "requiredResourceAccess", "signInAudience", "tags", "tokenEncryptionKeyId", "web", "extensionProperties", "createdOnBehalfOf", "owners", "policies", "synchronization" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entities", "content": { "application/json": { "schema": { "title": "Collection of application", "type": "object", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.application" } } } } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "applications.application" ], "summary": "Add new entity to applications", "operationId": "applications.application.CreateApplication", "requestBody": { "description": "New entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.application" } } }, "required": true }, "responses": { "201": { "description": "Created entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.application" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}": { "get": { "tags": [ "applications.application" ], "summary": "Get entity from applications by key", "operationId": "applications.application.GetApplication", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "api", "appId", "appRoles", "createdDateTime", "isFallbackPublicClient", "identifierUris", "displayName", "info", "keyCredentials", "logo", "optionalClaims", "orgRestrictions", "parentalControlSettings", "passwordCredentials", "publicClient", "publisherDomain", "requiredResourceAccess", "signInAudience", "tags", "tokenEncryptionKeyId", "web", "extensionProperties", "createdOnBehalfOf", "owners", "policies", "synchronization" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.application" } } }, "links": { "extensionProperties": { "operationId": "applications.application.GetApplication", "parameters": { "id": "$request.path.id" } }, "createdOnBehalfOf": { "operationId": "applications.application.GetApplication", "parameters": { "id": "$request.path.id" } }, "owners": { "operationId": "applications.application.GetApplication", "parameters": { "id": "$request.path.id" } }, "policies": { "operationId": "applications.application.GetApplication", "parameters": { "id": "$request.path.id" } }, "synchronization": { "operationId": "applications.application.GetApplication", "parameters": { "id": "$request.path.id" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.application" ], "summary": "Update entity in applications", "operationId": "applications.application.UpdateApplication", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" } ], "requestBody": { "description": "New property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.application" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "delete": { "tags": [ "applications.application" ], "summary": "Delete entity from applications", "operationId": "applications.application.DeleteApplication", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "If-Match", "in": "header", "description": "ETag", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/extensionProperties": { "get": { "tags": [ "applications.extensionProperty" ], "summary": "Get extensionProperties from applications", "operationId": "applications.ListExtensionProperties", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "appDisplayName", "appDisplayName desc", "name", "name desc", "dataType", "dataType desc", "isSyncedFromOnPremises", "isSyncedFromOnPremises desc", "targetObjects", "targetObjects desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "appDisplayName", "name", "dataType", "isSyncedFromOnPremises", "targetObjects" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.extensionProperty" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "applications.extensionProperty" ], "summary": "Create new navigation property to extensionProperties for applications", "operationId": "applications.CreateExtensionProperties", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" } ], "requestBody": { "description": "New navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.extensionProperty" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.extensionProperty" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/extensionProperties/{extensionProperty-id}": { "get": { "tags": [ "applications.extensionProperty" ], "summary": "Get extensionProperties from applications", "operationId": "applications.GetExtensionProperties", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "extensionProperty-id", "in": "path", "description": "key: extensionProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extensionProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "appDisplayName", "name", "dataType", "isSyncedFromOnPremises", "targetObjects" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.extensionProperty" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.extensionProperty" ], "summary": "Update the navigation property extensionProperties in applications", "operationId": "applications.UpdateExtensionProperties", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "extensionProperty-id", "in": "path", "description": "key: extensionProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extensionProperty" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.extensionProperty" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/createdOnBehalfOf": { "get": { "tags": [ "applications.directoryObject" ], "summary": "Get createdOnBehalfOf from applications", "operationId": "applications.GetCreatedOnBehalfOf", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/applications/{application-id}/owners": { "get": { "tags": [ "applications.directoryObject" ], "summary": "Get owners from applications", "operationId": "applications.ListOwners", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/applications/{application-id}/owners/{directoryObject-id}": { "get": { "tags": [ "applications.directoryObject" ], "summary": "Get owners from applications", "operationId": "applications.GetOwners", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/applications/{application-id}/policies": { "get": { "tags": [ "applications.directoryObject" ], "summary": "Get policies from applications", "operationId": "applications.ListPolicies", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/applications/{application-id}/policies/{directoryObject-id}": { "get": { "tags": [ "applications.directoryObject" ], "summary": "Get policies from applications", "operationId": "applications.GetPolicies", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/applications/{application-id}/synchronization": { "get": { "tags": [ "applications.synchronization" ], "summary": "Get synchronization from applications", "operationId": "applications.GetSynchronization", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "secrets", "jobs", "templates" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "jobs", "templates" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronization" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.synchronization" ], "summary": "Update the navigation property synchronization in applications", "operationId": "applications.UpdateSynchronization", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronization" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/jobs": { "get": { "tags": [ "applications.synchronization.synchronizationJob" ], "summary": "Get jobs from applications", "operationId": "applications.synchronization.ListJobs", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "templateId", "templateId desc", "schedule", "schedule desc", "status", "status desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "templateId", "schedule", "status", "schema" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "schema" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationJob" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "applications.synchronization.synchronizationJob" ], "summary": "Create new navigation property to jobs for applications", "operationId": "applications.synchronization.CreateJobs", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" } ], "requestBody": { "description": "New navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationJob" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationJob" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}": { "get": { "tags": [ "applications.synchronization.synchronizationJob" ], "summary": "Get jobs from applications", "operationId": "applications.synchronization.GetJobs", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationJob-id", "in": "path", "description": "key: synchronizationJob-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationJob" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "templateId", "schedule", "status", "schema" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "schema" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationJob" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.synchronization.synchronizationJob" ], "summary": "Update the navigation property jobs in applications", "operationId": "applications.synchronization.UpdateJobs", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationJob-id", "in": "path", "description": "key: synchronizationJob-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationJob" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationJob" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema": { "get": { "tags": [ "applications.synchronization.jobs.synchronizationSchema" ], "summary": "Get schema from applications", "operationId": "applications.synchronization.jobs.GetSchema", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationJob-id", "in": "path", "description": "key: synchronizationJob-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationJob" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "directories", "synchronizationRules", "version" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationSchema" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.synchronization.jobs.synchronizationSchema" ], "summary": "Update the navigation property schema in applications", "operationId": "applications.synchronization.jobs.UpdateSchema", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationJob-id", "in": "path", "description": "key: synchronizationJob-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationJob" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationSchema" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/templates": { "get": { "tags": [ "applications.synchronization.synchronizationTemplate" ], "summary": "Get templates from applications", "operationId": "applications.synchronization.ListTemplates", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "applicationId", "applicationId desc", "default", "default desc", "description", "description desc", "discoverable", "discoverable desc", "factoryTag", "factoryTag desc", "metadata", "metadata desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "applicationId", "default", "description", "discoverable", "factoryTag", "metadata", "schema" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "schema" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationTemplate" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "applications.synchronization.synchronizationTemplate" ], "summary": "Create new navigation property to templates for applications", "operationId": "applications.synchronization.CreateTemplates", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" } ], "requestBody": { "description": "New navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationTemplate" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationTemplate" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}": { "get": { "tags": [ "applications.synchronization.synchronizationTemplate" ], "summary": "Get templates from applications", "operationId": "applications.synchronization.GetTemplates", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationTemplate-id", "in": "path", "description": "key: synchronizationTemplate-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationTemplate" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "applicationId", "default", "description", "discoverable", "factoryTag", "metadata", "schema" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "schema" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationTemplate" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.synchronization.synchronizationTemplate" ], "summary": "Update the navigation property templates in applications", "operationId": "applications.synchronization.UpdateTemplates", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationTemplate-id", "in": "path", "description": "key: synchronizationTemplate-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationTemplate" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationTemplate" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema": { "get": { "tags": [ "applications.synchronization.templates.synchronizationSchema" ], "summary": "Get schema from applications", "operationId": "applications.synchronization.templates.GetSchema", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationTemplate-id", "in": "path", "description": "key: synchronizationTemplate-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationTemplate" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "directories", "synchronizationRules", "version" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationSchema" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "applications.synchronization.templates.synchronizationSchema" ], "summary": "Update the navigation property schema in applications", "operationId": "applications.synchronization.templates.UpdateSchema", "parameters": [ { "name": "application-id", "in": "path", "description": "key: application-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "application" }, { "name": "synchronizationTemplate-id", "in": "path", "description": "key: synchronizationTemplate-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "synchronizationTemplate" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.synchronizationSchema" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/administrativeUnits": { "get": { "tags": [ "administrativeUnits.administrativeUnit" ], "summary": "Get entities from administrativeUnits", "operationId": "administrativeUnits.administrativeUnit.ListAdministrativeUnit", "parameters": [ { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/search" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "displayName", "displayName desc", "description", "description desc", "visibility", "visibility desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "displayName", "description", "visibility", "extensions", "members", "scopedRoleMembers" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entities", "content": { "application/json": { "schema": { "title": "Collection of administrativeUnit", "type": "object", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.administrativeUnit" } } } } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "administrativeUnits.administrativeUnit" ], "summary": "Add new entity to administrativeUnits", "operationId": "administrativeUnits.administrativeUnit.CreateAdministrativeUnit", "requestBody": { "description": "New entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.administrativeUnit" } } }, "required": true }, "responses": { "201": { "description": "Created entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.administrativeUnit" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/administrativeUnits/{administrativeUnit-id}": { "get": { "tags": [ "administrativeUnits.administrativeUnit" ], "summary": "Get entity from administrativeUnits by key", "operationId": "administrativeUnits.administrativeUnit.GetAdministrativeUnit", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "displayName", "description", "visibility", "extensions", "members", "scopedRoleMembers" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.administrativeUnit" } } }, "links": { "extensions": { "operationId": "administrativeUnits.administrativeUnit.GetAdministrativeUnit", "parameters": { "id": "$request.path.id" } }, "members": { "operationId": "administrativeUnits.administrativeUnit.GetAdministrativeUnit", "parameters": { "id": "$request.path.id" } }, "scopedRoleMembers": { "operationId": "administrativeUnits.administrativeUnit.GetAdministrativeUnit", "parameters": { "id": "$request.path.id" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "administrativeUnits.administrativeUnit" ], "summary": "Update entity in administrativeUnits", "operationId": "administrativeUnits.administrativeUnit.UpdateAdministrativeUnit", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" } ], "requestBody": { "description": "New property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.administrativeUnit" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "delete": { "tags": [ "administrativeUnits.administrativeUnit" ], "summary": "Delete entity from administrativeUnits", "operationId": "administrativeUnits.administrativeUnit.DeleteAdministrativeUnit", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "If-Match", "in": "header", "description": "ETag", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/administrativeUnits/{administrativeUnit-id}/extensions": { "get": { "tags": [ "administrativeUnits.extension" ], "summary": "Get extensions from administrativeUnits", "operationId": "administrativeUnits.ListExtensions", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "post": { "tags": [ "administrativeUnits.extension" ], "summary": "Create new navigation property to extensions for administrativeUnits", "operationId": "administrativeUnits.CreateExtensions", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" } ], "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" } }, "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}": { "get": { "tags": [ "administrativeUnits.extension" ], "summary": "Get extensions from administrativeUnits", "operationId": "administrativeUnits.GetExtensions", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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": [ "administrativeUnits.extension" ], "summary": "Update the navigation property extensions in administrativeUnits", "operationId": "administrativeUnits.UpdateExtensions", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" } }, "/administrativeUnits/{administrativeUnit-id}/members": { "get": { "tags": [ "administrativeUnits.directoryObject" ], "summary": "Get members from administrativeUnits", "operationId": "administrativeUnits.ListMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}": { "get": { "tags": [ "administrativeUnits.directoryObject" ], "summary": "Get members from administrativeUnits", "operationId": "administrativeUnits.GetMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers": { "get": { "tags": [ "administrativeUnits.scopedRoleMembership" ], "summary": "Get scopedRoleMembers from administrativeUnits", "operationId": "administrativeUnits.ListScopedRoleMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "roleId", "roleId desc", "administrativeUnitId", "administrativeUnitId desc", "roleMemberInfo", "roleMemberInfo desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "roleId", "administrativeUnitId", "roleMemberInfo" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.scopedRoleMembership" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "administrativeUnits.scopedRoleMembership" ], "summary": "Create new navigation property to scopedRoleMembers for administrativeUnits", "operationId": "administrativeUnits.CreateScopedRoleMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" } ], "requestBody": { "description": "New navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.scopedRoleMembership" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.scopedRoleMembership" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}": { "get": { "tags": [ "administrativeUnits.scopedRoleMembership" ], "summary": "Get scopedRoleMembers from administrativeUnits", "operationId": "administrativeUnits.GetScopedRoleMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "scopedRoleMembership-id", "in": "path", "description": "key: scopedRoleMembership-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "scopedRoleMembership" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "roleId", "administrativeUnitId", "roleMemberInfo" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.scopedRoleMembership" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "administrativeUnits.scopedRoleMembership" ], "summary": "Update the navigation property scopedRoleMembers in administrativeUnits", "operationId": "administrativeUnits.UpdateScopedRoleMembers", "parameters": [ { "name": "administrativeUnit-id", "in": "path", "description": "key: administrativeUnit-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "administrativeUnit" }, { "name": "scopedRoleMembership-id", "in": "path", "description": "key: scopedRoleMembership-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "scopedRoleMembership" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.scopedRoleMembership" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/allowedDataLocations": { "get": { "tags": [ "allowedDataLocations.allowedDataLocation" ], "summary": "Get entities from allowedDataLocations", "operationId": "allowedDataLocations.allowedDataLocation.ListAllowedDataLocation", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "appId", "appId desc", "location", "location desc", "isDefault", "isDefault desc", "domain", "domain desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appId", "location", "isDefault", "domain" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entities", "content": { "application/json": { "schema": { "title": "Collection of allowedDataLocation", "type": "object", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.allowedDataLocation" } } } } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "allowedDataLocations.allowedDataLocation" ], "summary": "Add new entity to allowedDataLocations", "operationId": "allowedDataLocations.allowedDataLocation.CreateAllowedDataLocation", "requestBody": { "description": "New entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.allowedDataLocation" } } }, "required": true }, "responses": { "201": { "description": "Created entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.allowedDataLocation" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/allowedDataLocations/{allowedDataLocation-id}": { "get": { "tags": [ "allowedDataLocations.allowedDataLocation" ], "summary": "Get entity from allowedDataLocations by key", "operationId": "allowedDataLocations.allowedDataLocation.GetAllowedDataLocation", "parameters": [ { "name": "allowedDataLocation-id", "in": "path", "description": "key: allowedDataLocation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "allowedDataLocation" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appId", "location", "isDefault", "domain" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.allowedDataLocation" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "allowedDataLocations.allowedDataLocation" ], "summary": "Update entity in allowedDataLocations", "operationId": "allowedDataLocations.allowedDataLocation.UpdateAllowedDataLocation", "parameters": [ { "name": "allowedDataLocation-id", "in": "path", "description": "key: allowedDataLocation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "allowedDataLocation" } ], "requestBody": { "description": "New property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.allowedDataLocation" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "delete": { "tags": [ "allowedDataLocations.allowedDataLocation" ], "summary": "Delete entity from allowedDataLocations", "operationId": "allowedDataLocations.allowedDataLocation.DeleteAllowedDataLocation", "parameters": [ { "name": "allowedDataLocation-id", "in": "path", "description": "key: allowedDataLocation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "allowedDataLocation" }, { "name": "If-Match", "in": "header", "description": "ETag", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/appRoleAssignments": { "get": { "tags": [ "appRoleAssignments.appRoleAssignment" ], "summary": "Get entities from appRoleAssignments", "operationId": "appRoleAssignments.appRoleAssignment.ListAppRoleAssignment", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "appRoleId", "appRoleId desc", "creationTimestamp", "creationTimestamp desc", "principalDisplayName", "principalDisplayName desc", "principalId", "principalId desc", "principalType", "principalType desc", "resourceDisplayName", "resourceDisplayName desc", "resourceId", "resourceId desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appRoleId", "creationTimestamp", "principalDisplayName", "principalId", "principalType", "resourceDisplayName", "resourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entities", "content": { "application/json": { "schema": { "title": "Collection of appRoleAssignment", "type": "object", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } } } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "appRoleAssignments.appRoleAssignment" ], "summary": "Add new entity to appRoleAssignments", "operationId": "appRoleAssignments.appRoleAssignment.CreateAppRoleAssignment", "requestBody": { "description": "New entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } }, "required": true }, "responses": { "201": { "description": "Created entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/appRoleAssignments/{appRoleAssignment-id}": { "get": { "tags": [ "appRoleAssignments.appRoleAssignment" ], "summary": "Get entity from appRoleAssignments by key", "operationId": "appRoleAssignments.appRoleAssignment.GetAppRoleAssignment", "parameters": [ { "name": "appRoleAssignment-id", "in": "path", "description": "key: appRoleAssignment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "appRoleAssignment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appRoleId", "creationTimestamp", "principalDisplayName", "principalId", "principalType", "resourceDisplayName", "resourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "appRoleAssignments.appRoleAssignment" ], "summary": "Update entity in appRoleAssignments", "operationId": "appRoleAssignments.appRoleAssignment.UpdateAppRoleAssignment", "parameters": [ { "name": "appRoleAssignment-id", "in": "path", "description": "key: appRoleAssignment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "appRoleAssignment" } ], "requestBody": { "description": "New property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "delete": { "tags": [ "appRoleAssignments.appRoleAssignment" ], "summary": "Delete entity from appRoleAssignments", "operationId": "appRoleAssignments.appRoleAssignment.DeleteAppRoleAssignment", "parameters": [ { "name": "appRoleAssignment-id", "in": "path", "description": "key: appRoleAssignment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "appRoleAssignment" }, { "name": "If-Match", "in": "header", "description": "ETag", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/contacts": { "get": { "tags": [ "contacts.orgContact" ], "summary": "Get entities from contacts", "operationId": "contacts.orgContact.ListOrgContact", "parameters": [ { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/search" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "businessPhones", "businessPhones desc", "city", "city desc", "companyName", "companyName desc", "country", "country desc", "department", "department desc", "displayName", "displayName desc", "givenName", "givenName desc", "jobTitle", "jobTitle desc", "mail", "mail desc", "mailNickname", "mailNickname desc", "mobilePhone", "mobilePhone desc", "onPremisesSyncEnabled", "onPremisesSyncEnabled desc", "onPremisesLastSyncDateTime", "onPremisesLastSyncDateTime desc", "onPremisesProvisioningErrors", "onPremisesProvisioningErrors desc", "officeLocation", "officeLocation desc", "postalCode", "postalCode desc", "proxyAddresses", "proxyAddresses desc", "state", "state desc", "streetAddress", "streetAddress desc", "surname", "surname desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "businessPhones", "city", "companyName", "country", "department", "displayName", "givenName", "jobTitle", "mail", "mailNickname", "mobilePhone", "onPremisesSyncEnabled", "onPremisesLastSyncDateTime", "onPremisesProvisioningErrors", "officeLocation", "postalCode", "proxyAddresses", "state", "streetAddress", "surname", "manager", "directReports", "memberOf" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entities", "content": { "application/json": { "schema": { "title": "Collection of orgContact", "type": "object", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.orgContact" } } } } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "contacts.orgContact" ], "summary": "Add new entity to contacts", "operationId": "contacts.orgContact.CreateOrgContact", "requestBody": { "description": "New entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.orgContact" } } }, "required": true }, "responses": { "201": { "description": "Created entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.orgContact" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/contacts/{orgContact-id}": { "get": { "tags": [ "contacts.orgContact" ], "summary": "Get entity from contacts by key", "operationId": "contacts.orgContact.GetOrgContact", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "businessPhones", "city", "companyName", "country", "department", "displayName", "givenName", "jobTitle", "mail", "mailNickname", "mobilePhone", "onPremisesSyncEnabled", "onPremisesLastSyncDateTime", "onPremisesProvisioningErrors", "officeLocation", "postalCode", "proxyAddresses", "state", "streetAddress", "surname", "manager", "directReports", "memberOf" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.orgContact" } } }, "links": { "manager": { "operationId": "contacts.orgContact.GetOrgContact", "parameters": { "id": "$request.path.id" } }, "directReports": { "operationId": "contacts.orgContact.GetOrgContact", "parameters": { "id": "$request.path.id" } }, "memberOf": { "operationId": "contacts.orgContact.GetOrgContact", "parameters": { "id": "$request.path.id" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "contacts.orgContact" ], "summary": "Update entity in contacts", "operationId": "contacts.orgContact.UpdateOrgContact", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" } ], "requestBody": { "description": "New property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.orgContact" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "delete": { "tags": [ "contacts.orgContact" ], "summary": "Delete entity from contacts", "operationId": "contacts.orgContact.DeleteOrgContact", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "name": "If-Match", "in": "header", "description": "ETag", "schema": { "type": "string" } } ], "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/contacts/{orgContact-id}/manager": { "get": { "tags": [ "contacts.directoryObject" ], "summary": "Get manager from contacts", "operationId": "contacts.GetManager", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/contacts/{orgContact-id}/directReports": { "get": { "tags": [ "contacts.directoryObject" ], "summary": "Get directReports from contacts", "operationId": "contacts.ListDirectReports", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/contacts/{orgContact-id}/directReports/{directoryObject-id}": { "get": { "tags": [ "contacts.directoryObject" ], "summary": "Get directReports from contacts", "operationId": "contacts.GetDirectReports", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/contacts/{orgContact-id}/memberOf": { "get": { "tags": [ "contacts.directoryObject" ], "summary": "Get memberOf from contacts", "operationId": "contacts.ListMemberOf", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "$ref": "#/components/parameters/top" }, { "$ref": "#/components/parameters/skip" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/filter" }, { "$ref": "#/components/parameters/count" }, { "name": "$orderby", "in": "query", "description": "Order items by property values", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/contacts/{orgContact-id}/memberOf/{directoryObject-id}": { "get": { "tags": [ "contacts.directoryObject" ], "summary": "Get memberOf from contacts", "operationId": "contacts.GetMemberOf", "parameters": [ { "name": "orgContact-id", "in": "path", "description": "key: orgContact-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "orgContact" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "accountEnabled", "accountEnabled desc", "alternativeSecurityIds", "alternativeSecurityIds desc", "approximateLastSignInDateTime", "approximateLastSignInDateTime desc", "complianceExpirationDateTime", "complianceExpirationDateTime 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", "profileType", "profileType desc", "systemLabels", "systemLabels desc", "trustType", "trustType desc", "Name", "Name desc", "Manufacturer", "Manufacturer desc", "Model", "Model desc", "Kind", "Kind desc", "Status", "Status desc", "Platform", "Platform desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "accountEnabled", "alternativeSecurityIds", "approximateLastSignInDateTime", "complianceExpirationDateTime", "deviceId", "deviceMetadata", "deviceVersion", "displayName", "isCompliant", "isManaged", "onPremisesLastSyncDateTime", "onPremisesSyncEnabled", "operatingSystem", "operatingSystemVersion", "physicalIds", "profileType", "systemLabels", "trustType", "Name", "Manufacturer", "Model", "Kind", "Status", "Platform", "extensions", "registeredOwners", "registeredUsers", "commands" ], "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" } }, "x-ms-docs-operation-type": "operation" }, "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: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "accountEnabled", "alternativeSecurityIds", "approximateLastSignInDateTime", "complianceExpirationDateTime", "deviceId", "deviceMetadata", "deviceVersion", "displayName", "isCompliant", "isManaged", "onPremisesLastSyncDateTime", "onPremisesSyncEnabled", "operatingSystem", "operatingSystemVersion", "physicalIds", "profileType", "systemLabels", "trustType", "Name", "Manufacturer", "Model", "Kind", "Status", "Platform", "extensions", "registeredOwners", "registeredUsers", "commands" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.device" } } }, "links": { "extensions": { "operationId": "devices.device.GetDevice", "parameters": { "id": "$request.path.id" } }, "registeredOwners": { "operationId": "devices.device.GetDevice", "parameters": { "id": "$request.path.id" } }, "registeredUsers": { "operationId": "devices.device.GetDevice", "parameters": { "id": "$request.path.id" } }, "commands": { "operationId": "devices.device.GetDevice", "parameters": { "id": "$request.path.id" } } } }, "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: device-id", "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: device-id", "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: device-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "post": { "tags": [ "devices.extension" ], "summary": "Create new navigation property to extensions for devices", "operationId": "devices.CreateExtensions", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "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: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" } }, "/devices/{device-id}/registeredOwners": { "get": { "tags": [ "devices.directoryObject" ], "summary": "Get registeredOwners from devices", "operationId": "devices.ListRegisteredOwners", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/devices/{device-id}/registeredOwners/{directoryObject-id}": { "get": { "tags": [ "devices.directoryObject" ], "summary": "Get registeredOwners from devices", "operationId": "devices.GetRegisteredOwners", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/devices/{device-id}/registeredUsers": { "get": { "tags": [ "devices.directoryObject" ], "summary": "Get registeredUsers from devices", "operationId": "devices.ListRegisteredUsers", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/devices/{device-id}/registeredUsers/{directoryObject-id}": { "get": { "tags": [ "devices.directoryObject" ], "summary": "Get registeredUsers from devices", "operationId": "devices.GetRegisteredUsers", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/devices/{device-id}/commands": { "get": { "tags": [ "devices.command" ], "summary": "Get commands from devices", "operationId": "devices.ListCommands", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "Status", "Status desc", "Type", "Type desc", "AppServiceName", "AppServiceName desc", "PackageFamilyName", "PackageFamilyName desc", "Error", "Error desc", "Payload", "Payload desc", "PermissionTicket", "PermissionTicket desc", "PostBackUri", "PostBackUri desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "Status", "Type", "AppServiceName", "PackageFamilyName", "Error", "Payload", "PermissionTicket", "PostBackUri", "responsepayload" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "responsepayload" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.command" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "devices.command" ], "summary": "Create new navigation property to commands for devices", "operationId": "devices.CreateCommands", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "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.command" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.command" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/devices/{device-id}/commands/{command-id}": { "get": { "tags": [ "devices.command" ], "summary": "Get commands from devices", "operationId": "devices.GetCommands", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "command-id", "in": "path", "description": "key: command-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "command" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "Status", "Type", "AppServiceName", "PackageFamilyName", "Error", "Payload", "PermissionTicket", "PostBackUri", "responsepayload" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "responsepayload" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.command" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "devices.command" ], "summary": "Update the navigation property commands in devices", "operationId": "devices.UpdateCommands", "parameters": [ { "name": "device-id", "in": "path", "description": "key: device-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "device" }, { "name": "command-id", "in": "path", "description": "key: command-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "command" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.command" } } }, "required": true }, "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", "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", "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", "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" } }, "x-ms-docs-operation-type": "operation" }, "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: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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" } } }, "links": { "serviceConfigurationRecords": { "operationId": "domains.domain.GetDomain", "parameters": { "id": "$request.path.id" } }, "verificationDnsRecords": { "operationId": "domains.domain.GetDomain", "parameters": { "id": "$request.path.id" } }, "domainNameReferences": { "operationId": "domains.domain.GetDomain", "parameters": { "id": "$request.path.id" } } } }, "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: domain-id", "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: domain-id", "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}/serviceConfigurationRecords": { "get": { "tags": [ "domains.domainDnsRecord" ], "summary": "Get serviceConfigurationRecords from domains", "operationId": "domains.ListServiceConfigurationRecords", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "post": { "tags": [ "domains.domainDnsRecord" ], "summary": "Create new navigation property to serviceConfigurationRecords for domains", "operationId": "domains.CreateServiceConfigurationRecords", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "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: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "domainDnsRecord-id", "in": "path", "description": "key: domainDnsRecord-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domainDnsRecord" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "domainDnsRecord-id", "in": "path", "description": "key: domainDnsRecord-id", "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" } }, "/domains/{domain-id}/verificationDnsRecords": { "get": { "tags": [ "domains.domainDnsRecord" ], "summary": "Get verificationDnsRecords from domains", "operationId": "domains.ListVerificationDnsRecords", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "post": { "tags": [ "domains.domainDnsRecord" ], "summary": "Create new navigation property to verificationDnsRecords for domains", "operationId": "domains.CreateVerificationDnsRecords", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "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: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "domainDnsRecord-id", "in": "path", "description": "key: domainDnsRecord-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domainDnsRecord" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "domainDnsRecord-id", "in": "path", "description": "key: domainDnsRecord-id", "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" } }, "/domains/{domain-id}/domainNameReferences": { "get": { "tags": [ "domains.directoryObject" ], "summary": "Get domainNameReferences from domains", "operationId": "domains.ListDomainNameReferences", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/domains/{domain-id}/domainNameReferences/{directoryObject-id}": { "get": { "tags": [ "domains.directoryObject" ], "summary": "Get domainNameReferences from domains", "operationId": "domains.GetDomainNameReferences", "parameters": [ { "name": "domain-id", "in": "path", "description": "key: domain-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domain" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "x-ms-docs-operation-type": "operation" }, "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: domainDnsRecord-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "domainDnsRecord" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "isOptional", "label", "recordType", "supportedService", "ttl" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: domainDnsRecord-id", "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: domainDnsRecord-id", "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" } }, "/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", "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", "membershipRule", "membershipRule desc", "membershipRuleProcessingState", "membershipRuleProcessingState desc", "onPremisesLastSyncDateTime", "onPremisesLastSyncDateTime desc", "onPremisesProvisioningErrors", "onPremisesProvisioningErrors desc", "onPremisesSecurityIdentifier", "onPremisesSecurityIdentifier desc", "onPremisesSyncEnabled", "onPremisesSyncEnabled desc", "preferredDataLocation", "preferredDataLocation desc", "preferredLanguage", "preferredLanguage desc", "proxyAddresses", "proxyAddresses desc", "renewedDateTime", "renewedDateTime desc", "resourceBehaviorOptions", "resourceBehaviorOptions desc", "resourceProvisioningOptions", "resourceProvisioningOptions desc", "securityEnabled", "securityEnabled desc", "theme", "theme desc", "visibility", "visibility desc", "accessType", "accessType desc", "allowExternalSenders", "allowExternalSenders desc", "autoSubscribeNewMembers", "autoSubscribeNewMembers desc", "isFavorite", "isFavorite desc", "isSubscribedByMail", "isSubscribedByMail desc", "unseenCount", "unseenCount desc", "unseenConversationsCount", "unseenConversationsCount desc", "unseenMessagesCount", "unseenMessagesCount desc", "isArchived", "isArchived desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "classification", "createdDateTime", "description", "displayName", "groupTypes", "mail", "mailEnabled", "mailNickname", "membershipRule", "membershipRuleProcessingState", "onPremisesLastSyncDateTime", "onPremisesProvisioningErrors", "onPremisesSecurityIdentifier", "onPremisesSyncEnabled", "preferredDataLocation", "preferredLanguage", "proxyAddresses", "renewedDateTime", "resourceBehaviorOptions", "resourceProvisioningOptions", "securityEnabled", "theme", "visibility", "accessType", "allowExternalSenders", "autoSubscribeNewMembers", "isFavorite", "isSubscribedByMail", "unseenCount", "unseenConversationsCount", "unseenMessagesCount", "isArchived", "extensions", "appRoleAssignments", "members", "memberOf", "createdOnBehalfOf", "owners", "settings", "endpoints", "threads", "calendar", "calendarView", "events", "conversations", "photo", "photos", "acceptedSenders", "rejectedSenders", "drive", "drives", "sites", "planner", "onenote", "team", "channels", "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" } }, "x-ms-docs-operation-type": "operation" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "classification", "createdDateTime", "description", "displayName", "groupTypes", "mail", "mailEnabled", "mailNickname", "membershipRule", "membershipRuleProcessingState", "onPremisesLastSyncDateTime", "onPremisesProvisioningErrors", "onPremisesSecurityIdentifier", "onPremisesSyncEnabled", "preferredDataLocation", "preferredLanguage", "proxyAddresses", "renewedDateTime", "resourceBehaviorOptions", "resourceProvisioningOptions", "securityEnabled", "theme", "visibility", "accessType", "allowExternalSenders", "autoSubscribeNewMembers", "isFavorite", "isSubscribedByMail", "unseenCount", "unseenConversationsCount", "unseenMessagesCount", "isArchived", "extensions", "appRoleAssignments", "members", "memberOf", "createdOnBehalfOf", "owners", "settings", "endpoints", "threads", "calendar", "calendarView", "events", "conversations", "photo", "photos", "acceptedSenders", "rejectedSenders", "drive", "drives", "sites", "planner", "onenote", "team", "channels", "groupLifecyclePolicies" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved entity", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.group" } } }, "links": { "extensions": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "appRoleAssignments": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "members": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "memberOf": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "createdOnBehalfOf": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "owners": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "settings": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "endpoints": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "threads": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "calendar": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "calendarView": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "events": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "conversations": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "photo": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "photos": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "acceptedSenders": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "rejectedSenders": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "drive": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "drives": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "sites": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "planner": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "onenote": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "team": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "channels": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } }, "groupLifecyclePolicies": { "operationId": "groups.group.GetGroup", "parameters": { "id": "$request.path.id" } } } }, "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: group-id", "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: group-id", "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}/extensions": { "get": { "tags": [ "groups.extension" ], "summary": "Get extensions from groups", "operationId": "groups.ListExtensions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "post": { "tags": [ "groups.extension" ], "summary": "Create new navigation property to extensions for groups", "operationId": "groups.CreateExtensions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" } }, "/groups/{group-id}/appRoleAssignments": { "get": { "tags": [ "groups.appRoleAssignment" ], "summary": "Get appRoleAssignments from groups", "operationId": "groups.ListAppRoleAssignments", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "appRoleId", "appRoleId desc", "creationTimestamp", "creationTimestamp desc", "principalDisplayName", "principalDisplayName desc", "principalId", "principalId desc", "principalType", "principalType desc", "resourceDisplayName", "resourceDisplayName desc", "resourceId", "resourceId desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appRoleId", "creationTimestamp", "principalDisplayName", "principalId", "principalType", "resourceDisplayName", "resourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}": { "get": { "tags": [ "groups.appRoleAssignment" ], "summary": "Get appRoleAssignments from groups", "operationId": "groups.GetAppRoleAssignments", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "appRoleAssignment-id", "in": "path", "description": "key: appRoleAssignment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "appRoleAssignment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "appRoleId", "creationTimestamp", "principalDisplayName", "principalId", "principalType", "resourceDisplayName", "resourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.appRoleAssignment" } } } }, "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: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/members/{directoryObject-id}": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get members from groups", "operationId": "groups.GetMembers", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/memberOf": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get memberOf from groups", "operationId": "groups.ListMemberOf", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/memberOf/{directoryObject-id}": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get memberOf from groups", "operationId": "groups.GetMemberOf", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get createdOnBehalfOf from groups", "operationId": "groups.GetCreatedOnBehalfOf", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/owners": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get owners from groups", "operationId": "groups.ListOwners", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/owners/{directoryObject-id}": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get owners from groups", "operationId": "groups.GetOwners", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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}/settings": { "get": { "tags": [ "groups.directorySetting" ], "summary": "Get settings from groups", "operationId": "groups.ListSettings", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "displayName", "templateId", "values" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.directorySetting" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "groups.directorySetting" ], "summary": "Create new navigation property to settings for groups", "operationId": "groups.CreateSettings", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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.directorySetting" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.directorySetting" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/groups/{group-id}/settings/{directorySetting-id}": { "get": { "tags": [ "groups.directorySetting" ], "summary": "Get settings from groups", "operationId": "groups.GetSettings", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directorySetting-id", "in": "path", "description": "key: directorySetting-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directorySetting" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "displayName", "templateId", "values" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.directorySetting" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "groups.directorySetting" ], "summary": "Update the navigation property settings in groups", "operationId": "groups.UpdateSettings", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directorySetting-id", "in": "path", "description": "key: directorySetting-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directorySetting" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.directorySetting" } } }, "required": true }, "responses": { "204": { "description": "Success" }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/groups/{group-id}/endpoints": { "get": { "tags": [ "groups.endpoint" ], "summary": "Get endpoints from groups", "operationId": "groups.ListEndpoints", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "deletedDateTime", "deletedDateTime desc", "capability", "capability desc", "providerId", "providerId desc", "providerName", "providerName desc", "uri", "uri desc", "providerResourceId", "providerResourceId desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "capability", "providerId", "providerName", "uri", "providerResourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.endpoint" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "groups.endpoint" ], "summary": "Create new navigation property to endpoints for groups", "operationId": "groups.CreateEndpoints", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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.endpoint" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.endpoint" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" } }, "/groups/{group-id}/endpoints/{endpoint-id}": { "get": { "tags": [ "groups.endpoint" ], "summary": "Get endpoints from groups", "operationId": "groups.GetEndpoints", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "endpoint-id", "in": "path", "description": "key: endpoint-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "endpoint" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "deletedDateTime", "capability", "providerId", "providerName", "uri", "providerResourceId" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.endpoint" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "groups.endpoint" ], "summary": "Update the navigation property endpoints in groups", "operationId": "groups.UpdateEndpoints", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "endpoint-id", "in": "path", "description": "key: endpoint-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "endpoint" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.endpoint" } } }, "required": true }, "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: group-id", "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", "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", "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" }, "post": { "tags": [ "groups.conversationThread" ], "summary": "Create new navigation property to threads for groups", "operationId": "groups.CreateThreads", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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", "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", "importance", "importance desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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}/mentions": { "get": { "tags": [ "groups.threads.posts.mention" ], "summary": "Get mentions from groups", "operationId": "groups.threads.posts.ListMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "mentioned", "mentioned desc", "mentionText", "mentionText desc", "clientReference", "clientReference desc", "createdBy", "createdBy desc", "createdDateTime", "createdDateTime desc", "serverCreatedDateTime", "serverCreatedDateTime desc", "deepLink", "deepLink desc", "application", "application desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "mentioned", "mentionText", "clientReference", "createdBy", "createdDateTime", "serverCreatedDateTime", "deepLink", "application" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "groups.threads.posts.mention" ], "summary": "Create new navigation property to mentions for groups", "operationId": "groups.threads.posts.CreateMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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.mention" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "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}/mentions" ] }, "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}": { "get": { "tags": [ "groups.threads.posts.mention" ], "summary": "Get mentions from groups", "operationId": "groups.threads.posts.GetMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "mention-id", "in": "path", "description": "key: mention-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "mention" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "mentioned", "mentionText", "clientReference", "createdBy", "createdDateTime", "serverCreatedDateTime", "deepLink", "application" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "groups.threads.posts.mention" ], "summary": "Update the navigation property mentions in groups", "operationId": "groups.threads.posts.UpdateMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "mention-id", "in": "path", "description": "key: mention-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "mention" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } }, "required": true }, "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}/mentions/{mention-id}" ] }, "/groups/{group-id}/calendar": { "get": { "tags": [ "groups.calendar" ], "summary": "Get calendar from groups", "operationId": "groups.GetCalendar", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "name", "color", "hexColor", "isDefaultCalendar", "changeKey", "canShare", "canViewPrivateItems", "isShared", "isSharedWithMe", "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: group-id", "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" } }, "/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: group-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id}", "/groups/{group-id}/events/{event-id}/calendar/events/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "name", "color", "hexColor", "isDefaultCalendar", "changeKey", "canShare", "canViewPrivateItems", "isShared", "isSharedWithMe", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.calendar.events.event" ], "summary": "Get instances from groups", "operationId": "groups.calendar.events.GetInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id}", "/groups/{group-id}/calendarView/{event-id}/instances/{event-id}", "/groups/{group-id}/events/{event-id}/instances/{event-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "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/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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/calendarView": { "get": { "tags": [ "groups.calendar.event" ], "summary": "Get calendarView from groups", "operationId": "groups.calendar.ListCalendarView", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id}", "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "name", "color", "hexColor", "isDefaultCalendar", "changeKey", "canShare", "canViewPrivateItems", "isShared", "isSharedWithMe", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.calendar.calendarView.event" ], "summary": "Get instances from groups", "operationId": "groups.calendar.calendarView.GetInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id}", "/groups/{group-id}/calendarView/{event-id}/instances/{event-id}", "/groups/{group-id}/events/{event-id}/instances/{event-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "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/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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/singleValueExtendedProperties": { "get": { "tags": [ "groups.calendar.singleValueLegacyExtendedProperty" ], "summary": "Get singleValueExtendedProperties from groups", "operationId": "groups.calendar.ListSingleValueExtendedProperties", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "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}/calendar/multiValueExtendedProperties": { "get": { "tags": [ "groups.calendar.multiValueLegacyExtendedProperty" ], "summary": "Get multiValueExtendedProperties from groups", "operationId": "groups.calendar.ListMultiValueExtendedProperties", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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}/calendarView": { "get": { "tags": [ "groups.event" ], "summary": "Get calendarView from groups", "operationId": "groups.ListCalendarView", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "post": { "tags": [ "groups.event" ], "summary": "Create new navigation property to calendarView for groups", "operationId": "groups.CreateCalendarView", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "name", "color", "hexColor", "isDefaultCalendar", "changeKey", "canShare", "canViewPrivateItems", "isShared", "isSharedWithMe", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/calendar", "/groups/{group-id}/calendar/calendarView/{event-id}/calendar", "/groups/{group-id}/events/{event-id}/calendar" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.calendarView.calendar.event" ], "summary": "Get events from groups", "operationId": "groups.calendarView.calendar.GetEvents", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}", "/groups/{group-id}/events/{event-id}/calendar/events/{event-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.calendarView.calendar.event" ], "summary": "Get calendarView from groups", "operationId": "groups.calendarView.calendar.GetCalendarView", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/calendarView/{event-id}", "/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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}/instances": { "get": { "tags": [ "groups.calendarView.event" ], "summary": "Get instances from groups", "operationId": "groups.calendarView.ListInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{event-id}/instances", "/groups/{group-id}/events/{event-id}/instances" ] }, "/groups/{group-id}/calendarView/{event-id}/instances/{event-id}": { "get": { "tags": [ "groups.calendarView.event" ], "summary": "Get instances from groups", "operationId": "groups.calendarView.GetInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id}", "/groups/{group-id}/events/{event-id}/instances/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}", "/groups/{group-id}/events/{event-id}/extensions/{extension-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}", "/groups/{group-id}/events/{event-id}/attachments/{attachment-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" ] }, "/groups/{group-id}/events": { "get": { "tags": [ "groups.event" ], "summary": "Get events from groups", "operationId": "groups.ListEvents", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "post": { "tags": [ "groups.event" ], "summary": "Create new navigation property to events for groups", "operationId": "groups.CreateEvents", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "name", "color", "hexColor", "isDefaultCalendar", "changeKey", "canShare", "canViewPrivateItems", "isShared", "isSharedWithMe", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/calendar", "/groups/{group-id}/calendar/calendarView/{event-id}/calendar", "/groups/{group-id}/calendarView/{event-id}/calendar" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.events.calendar.event" ], "summary": "Get events from groups", "operationId": "groups.events.calendar.GetEvents", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}", "/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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-id}": { "get": { "tags": [ "groups.events.calendar.event" ], "summary": "Get calendarView from groups", "operationId": "groups.events.calendar.GetCalendarView", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/calendarView/{event-id}", "/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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}/instances": { "get": { "tags": [ "groups.events.event" ], "summary": "Get instances from groups", "operationId": "groups.events.ListInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "creationOptions", "creationOptions desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{event-id}/instances", "/groups/{group-id}/calendarView/{event-id}/instances" ] }, "/groups/{group-id}/events/{event-id}/instances/{event-id}": { "get": { "tags": [ "groups.events.event" ], "summary": "Get instances from groups", "operationId": "groups.events.GetInstances", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "creationOptions", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/instances/{event-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id}", "/groups/{group-id}/calendarView/{event-id}/instances/{event-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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}", "/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}/attachments": { "get": { "tags": [ "groups.events.attachment" ], "summary": "Get attachments from groups", "operationId": "groups.events.ListAttachments", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}", "/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}/singleValueExtendedProperties": { "get": { "tags": [ "groups.events.singleValueLegacyExtendedProperty" ], "summary": "Get singleValueExtendedProperties from groups", "operationId": "groups.events.ListSingleValueExtendedProperties", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", "/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}/multiValueExtendedProperties": { "get": { "tags": [ "groups.events.multiValueLegacyExtendedProperty" ], "summary": "Get multiValueExtendedProperties from groups", "operationId": "groups.events.ListMultiValueExtendedProperties", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "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}/calendar/calendarView/{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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "event-id", "in": "path", "description": "key: event-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "event" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", "/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", "/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}" ] }, "/groups/{group-id}/conversations": { "get": { "tags": [ "groups.conversation" ], "summary": "Get conversations from groups", "operationId": "groups.ListConversations", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "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" }, "post": { "tags": [ "groups.conversation" ], "summary": "Create new navigation property to conversations for groups", "operationId": "groups.CreateConversations", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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", "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", "importance", "importance desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "extension" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "extension-id", "in": "path", "description": "key: extension-id", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdDateTime", "lastModifiedDateTime", "changeKey", "categories", "body", "receivedDateTime", "hasAttachments", "from", "sender", "conversationThreadId", "newParticipants", "conversationId", "importance", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "extensions", "inReplyTo", "attachments", "singleValueExtendedProperties", "multiValueExtendedProperties", "mentions" ], "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "attachment" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "lastModifiedDateTime", "name", "contentType", "size", "isInline" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "attachment-id", "in": "path", "description": "key: attachment-id", "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" }, "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}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "singleValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "singleValueLegacyExtendedProperty-id", "in": "path", "description": "key: singleValueLegacyExtendedProperty-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "multiValueLegacyExtendedProperty" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "value" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "multiValueLegacyExtendedProperty-id", "in": "path", "description": "key: multiValueLegacyExtendedProperty-id", "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" }, "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}/mentions": { "get": { "tags": [ "groups.conversations.threads.post" ], "summary": "Get mentions from groups", "operationId": "groups.conversations.threads.posts.ListMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "mentioned", "mentioned desc", "mentionText", "mentionText desc", "clientReference", "clientReference desc", "createdBy", "createdBy desc", "createdDateTime", "createdDateTime desc", "serverCreatedDateTime", "serverCreatedDateTime desc", "deepLink", "deepLink desc", "application", "application desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "mentioned", "mentionText", "clientReference", "createdBy", "createdDateTime", "serverCreatedDateTime", "deepLink", "application" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "post": { "tags": [ "groups.conversations.threads.post" ], "summary": "Create new navigation property to mentions for groups", "operationId": "groups.conversations.threads.posts.CreateMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "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.mention" } } }, "required": true }, "responses": { "201": { "description": "Created navigation property.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "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}/mentions" ] }, "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}": { "get": { "tags": [ "groups.conversations.threads.post" ], "summary": "Get mentions from groups", "operationId": "groups.conversations.threads.posts.GetMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "mention-id", "in": "path", "description": "key: mention-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "mention" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "mentioned", "mentionText", "clientReference", "createdBy", "createdDateTime", "serverCreatedDateTime", "deepLink", "application" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*" ], "type": "string" } } } ], "responses": { "200": { "description": "Retrieved navigation property", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } } }, "default": { "$ref": "#/components/responses/error" } }, "x-ms-docs-operation-type": "operation" }, "patch": { "tags": [ "groups.conversations.threads.post" ], "summary": "Update the navigation property mentions in groups", "operationId": "groups.conversations.threads.posts.UpdateMentions", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "conversation-id", "in": "path", "description": "key: conversation-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversation" }, { "name": "conversationThread-id", "in": "path", "description": "key: conversationThread-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "conversationThread" }, { "name": "post-id", "in": "path", "description": "key: post-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "post" }, { "name": "mention-id", "in": "path", "description": "key: mention-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "mention" } ], "requestBody": { "description": "New navigation property values", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/microsoft.graph.mention" } } }, "required": true }, "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}/mentions/{mention-id}" ] }, "/groups/{group-id}/photo": { "get": { "tags": [ "groups.profilePhoto" ], "summary": "Get photo from groups", "operationId": "groups.GetPhoto", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "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" } }, "/groups/{group-id}/photos": { "get": { "tags": [ "groups.profilePhoto" ], "summary": "Get photos from groups", "operationId": "groups.ListPhotos", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "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" }, "post": { "tags": [ "groups.profilePhoto" ], "summary": "Create new navigation property to photos for groups", "operationId": "groups.CreatePhotos", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "profilePhoto-id", "in": "path", "description": "key: profilePhoto-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "profilePhoto" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "profilePhoto-id", "in": "path", "description": "key: profilePhoto-id", "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" } }, "/groups/{group-id}/acceptedSenders": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get acceptedSenders from groups", "operationId": "groups.ListAcceptedSenders", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "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" }, "post": { "tags": [ "groups.directoryObject" ], "summary": "Create new navigation property to acceptedSenders for groups", "operationId": "groups.CreateAcceptedSenders", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "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" } }, "/groups/{group-id}/rejectedSenders": { "get": { "tags": [ "groups.directoryObject" ], "summary": "Get rejectedSenders from groups", "operationId": "groups.ListRejectedSenders", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "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" }, "post": { "tags": [ "groups.directoryObject" ], "summary": "Create new navigation property to rejectedSenders for groups", "operationId": "groups.CreateRejectedSenders", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "directoryObject" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "directoryObject-id", "in": "path", "description": "key: directoryObject-id", "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" } }, "/groups/{group-id}/drive": { "get": { "tags": [ "groups.drive" ], "summary": "Get drive from groups", "operationId": "groups.GetDrive", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdBy", "createdDateTime", "description", "eTag", "lastModifiedBy", "lastModifiedDateTime", "name", "parentReference", "webUrl", "driveType", "owner", "quota", "sharePointIds", "system", "createdByUser", "lastModifiedByUser", "activities", "items", "list", "root", "special" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "createdByUser", "lastModifiedByUser", "activities", "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: group-id", "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" } }, "/groups/{group-id}/drives": { "get": { "tags": [ "groups.drive" ], "summary": "Get drives from groups", "operationId": "groups.ListDrives", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdBy", "createdDateTime", "description", "eTag", "lastModifiedBy", "lastModifiedDateTime", "name", "parentReference", "webUrl", "driveType", "owner", "quota", "sharePointIds", "system", "createdByUser", "lastModifiedByUser", "activities", "items", "list", "root", "special" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "createdByUser", "lastModifiedByUser", "activities", "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" }, "post": { "tags": [ "groups.drive" ], "summary": "Create new navigation property to drives for groups", "operationId": "groups.CreateDrives", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "drive-id", "in": "path", "description": "key: drive-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "drive" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdBy", "createdDateTime", "description", "eTag", "lastModifiedBy", "lastModifiedDateTime", "name", "parentReference", "webUrl", "driveType", "owner", "quota", "sharePointIds", "system", "createdByUser", "lastModifiedByUser", "activities", "items", "list", "root", "special" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "*", "createdByUser", "lastModifiedByUser", "activities", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "drive-id", "in": "path", "description": "key: drive-id", "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" } }, "/groups/{group-id}/sites": { "get": { "tags": [ "groups.site" ], "summary": "Get sites from groups", "operationId": "groups.ListSites", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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", "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", "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", "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" }, "post": { "tags": [ "groups.site" ], "summary": "Create new navigation property to sites for groups", "operationId": "groups.CreateSites", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "site-id", "in": "path", "description": "key: site-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "site" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "site-id", "in": "path", "description": "key: site-id", "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" } }, "/groups/{group-id}/planner": { "get": { "tags": [ "groups.plannerGroup" ], "summary": "Get planner from groups", "operationId": "groups.GetPlanner", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "plans" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "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" } }, "/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: group-id", "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", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "id desc", "createdBy", "createdBy desc", "createdDateTime", "createdDateTime desc", "owner", "owner desc", "title", "title desc", "contexts", "contexts desc" ], "type": "string" } } }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdBy", "createdDateTime", "owner", "title", "contexts", "tasks", "buckets", "details" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/groups/{group-id}/planner/plans/{plannerPlan-id}": { "get": { "tags": [ "groups.planner.plannerPlan" ], "summary": "Get plans from groups", "operationId": "groups.planner.GetPlans", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "plannerPlan-id", "in": "path", "description": "key: plannerPlan-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "plannerPlan" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "createdBy", "createdDateTime", "owner", "title", "contexts", "tasks", "buckets", "details" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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" } }, "/groups/{group-id}/onenote": { "get": { "tags": [ "groups.onenote" ], "summary": "Get onenote from groups", "operationId": "groups.GetOnenote", "parameters": [ { "name": "group-id", "in": "path", "description": "key: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "schema": { "uniqueItems": true, "type": "array", "items": { "enum": [ "id", "notebooks", "sections", "sectionGroups", "pages", "resources", "operations" ], "type": "string" } } }, { "name": "$expand", "in": "query", "description": "Expand related entities", "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: group-id", "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" } }, "/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: group-id", "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", "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", "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", "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" }, "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: group-id", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "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" } }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "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/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", "/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/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/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/pages/{onenotePage-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/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-id}", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/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", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentSection/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/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", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/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}/parentSectionGroup", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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/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", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections" ] }, "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}": { "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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/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", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id}", "/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}/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/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}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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/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/pages/{onenotePage-id}/parentSection/pages", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenotePage" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "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" }, "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/sections/{onenoteSection-id}/pages/{onenotePage-id}", "/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/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenotePage" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "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" }, "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/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/pages/{onenotePage-id}/parentSection" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenotePage" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "onenotePage-id", "in": "path", "description": "key: onenotePage-id", "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" }, "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/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/pages/{onenotePage-id}/parentNotebook" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "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/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", "/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/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/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/pages/{onenotePage-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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" }, "x-ms-docs-grouped-path": [ "/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}", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/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/pages/{onenotePage-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/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", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/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}/parentSectionGroup", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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", "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", "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", "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" }, "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "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/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", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id}", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-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", "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "onenoteSection" }, { "name": "$select", "in": "query", "description": "Select properties to be returned", "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", "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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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" }, "x-ms-docs-grouped-path": [ "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", "/groups/{group-id}/onenote/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/pages/{onenotePage-id}/parentSection/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup", "/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup" ] }, "/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: group-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "group" }, { "name": "notebook-id", "in": "path", "description": "key: notebook-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "notebook" }, { "name": "sectionGroup-id", "in": "path", "description": "key: sectionGroup-id", "required": true, "schema": { "type": "string" }, "x-ms-docs-key-type": "sectionGroup" }, { "name": "onenoteSection-id", "in": "path", "description": "key: onenoteSection-id", "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", "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", "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", "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" }, "post": { "tags": [ "groups.onenote.notebooks.se