Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions openApiDocs/beta/Applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ paths:
- verifiedPublisher desc
- web
- web desc
- windows
- windows desc
- onPremisesPublishing
- onPremisesPublishing desc
type: string
Expand Down Expand Up @@ -146,6 +148,7 @@ paths:
- uniqueName
- verifiedPublisher
- web
- windows
- onPremisesPublishing
- appManagementPolicies
- createdOnBehalfOf
Expand Down Expand Up @@ -290,6 +293,7 @@ paths:
- uniqueName
- verifiedPublisher
- web
- windows
- onPremisesPublishing
- appManagementPolicies
- createdOnBehalfOf
Expand Down Expand Up @@ -9099,6 +9103,8 @@ paths:
- verifiedPublisher desc
- web
- web desc
- windows
- windows desc
- onPremisesPublishing
- onPremisesPublishing desc
type: string
Expand Down Expand Up @@ -9144,6 +9150,7 @@ paths:
- uniqueName
- verifiedPublisher
- web
- windows
- onPremisesPublishing
- appManagementPolicies
- createdOnBehalfOf
Expand Down Expand Up @@ -9302,6 +9309,8 @@ paths:
- verifiedPublisher desc
- web
- web desc
- windows
- windows desc
- onPremisesPublishing
- onPremisesPublishing desc
type: string
Expand Down Expand Up @@ -10671,6 +10680,8 @@ paths:
- verifiedPublisher desc
- web
- web desc
- windows
- windows desc
- onPremisesPublishing
- onPremisesPublishing desc
type: string
Expand Down Expand Up @@ -10716,6 +10727,7 @@ paths:
- uniqueName
- verifiedPublisher
- web
- windows
- onPremisesPublishing
- appManagementPolicies
- createdOnBehalfOf
Expand Down Expand Up @@ -10881,6 +10893,8 @@ paths:
- verifiedPublisher desc
- web
- web desc
- windows
- windows desc
- onPremisesPublishing
- onPremisesPublishing desc
type: string
Expand Down Expand Up @@ -19947,6 +19961,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.verifiedPublisher'
web:
$ref: '#/components/schemas/microsoft.graph.webApplication'
windows:
$ref: '#/components/schemas/microsoft.graph.windowsApplication'
onPremisesPublishing:
$ref: '#/components/schemas/microsoft.graph.onPremisesPublishing'
appManagementPolicies:
Expand Down Expand Up @@ -21415,6 +21431,21 @@ components:
description: Specifies the index of the URLs where user tokens are sent for sign-in. This is only valid for applications using SAML.
additionalProperties:
type: object
microsoft.graph.windowsApplication:
title: windowsApplication
type: object
properties:
packageSid:
type: string
description: The package security identifier that Microsoft has assigned the application. Optional. Read-only.
nullable: true
redirectUris:
type: array
items:
type: string
description: Specifies the URLs where user tokens are sent for sign-in or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. Only available for applications that support the PersonalMicrosoftAccount signInAudience.
additionalProperties:
type: object
microsoft.graph.onPremisesPublishing:
title: onPremisesPublishing
type: object
Expand Down
20 changes: 20 additions & 0 deletions openApiDocs/beta/ChangeNotifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,26 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
'/subscriptions/{subscription-id}/microsoft.graph.reauthorize':
post:
tags:
- subscriptions.Actions
summary: Invoke action reauthorize
operationId: subscriptions_reauthorize
parameters:
- name: subscription-id
in: path
description: 'key: id of subscription'
required: true
schema:
type: string
x-ms-docs-key-type: subscription
responses:
'204':
description: Success
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
components:
schemas:
microsoft.graph.subscription:
Expand Down
Loading