Edit

redirectUriWildcardConfiguration 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 controls the use of wildcard patterns in redirect URIs with configurable exceptions. When enabled, applications are restricted from using wildcard patterns in their redirect URIs, improving security by preventing overly permissive redirect configurations.

Applies to: redirectUriConfiguration (uriWithWildcard)

Methods

None.

Properties

Property Type Description
excludeActors appManagementPolicyActorExemptions Applications or service principals that are exempt from this restriction.
excludeFormats redirectUriWildcardExcludeFormats Configuration that specifies exceptions to the wildcard restriction, such as allowing wildcards for specific trusted domains.
isStateSetByMicrosoft Boolean Indicates whether the restriction state was set by Microsoft.
restrictForAppsCreatedAfterDateTime DateTimeOffset Date and time when this restriction starts applying to newly created applications. Applications created before this date are not affected.
state appManagementRestrictionState Indicates whether the restriction is enabled or disabled. The possible values are: enabled, disabled, unknownFutureValue.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.redirectUriWildcardConfiguration",
  "state": "String",
  "isStateSetByMicrosoft": "Boolean",
  "restrictForAppsCreatedAfterDateTime": "String (timestamp)",
  "excludeFormats": {
    "@odata.type": "microsoft.graph.redirectUriWildcardExcludeFormats"
  },
  "excludeActors": {
    "@odata.type": "microsoft.graph.appManagementPolicyActorExemptions"
  }
}