Edit

redirectUriConfiguration resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Configuration object that contains redirect URI validation rules and restrictions for applications. This object is configured on the redirectUris property of the appManagementApplicationConfiguration and customAppManagementApplicationConfiguration resources.

Applies to: appManagementApplicationConfiguration, customAppManagementApplicationConfiguration, tenantAppManagementPolicy (applicationRestrictions)

Methods

None.

Properties

Property Type Description
uriWithBlockedDomain redirectUriBlockedDomainConfiguration Configuration that specifies blocked domains for redirect URIs with global and platform-specific settings.
uriWithBlockedScheme redirectUriBlockedSchemeConfiguration Configuration that specifies blocked URI schemes for redirect URIs with global and platform-specific settings and exempt format patterns.
uriWithWildcard redirectUriWildcardConfiguration Configuration that controls the use of wildcard patterns in redirect URIs with configurable exceptions.
uriWithoutAllowedDomain redirectUriAllowedDomainConfiguration Configuration that specifies allowed domains for redirect URIs with global and platform-specific settings.
uriWithoutAllowedScheme redirectUriAllowedSchemeConfiguration Configuration that specifies allowed URI schemes for redirect URIs with global and platform-specific settings.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.redirectUriConfiguration",
  "uriWithBlockedScheme": {
    "@odata.type": "microsoft.graph.redirectUriBlockedSchemeConfiguration"
  },
  "uriWithoutAllowedScheme": {
    "@odata.type": "microsoft.graph.redirectUriAllowedSchemeConfiguration"
  },
  "uriWithWildcard": {
    "@odata.type": "microsoft.graph.redirectUriWildcardConfiguration"
  },
  "uriWithoutAllowedDomain": {
    "@odata.type": "microsoft.graph.redirectUriAllowedDomainConfiguration"
  },
  "uriWithBlockedDomain": {
    "@odata.type": "microsoft.graph.redirectUriBlockedDomainConfiguration"
  }
}