webApplication 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.

Specifies settings for a web application.

Properties

Property Type Description
homePageUrl String Home page or landing page of the application.
implicitGrantSettings implicitGrantSettings Specifies whether this web application can request tokens using the OAuth 2.0 implicit flow.
logoutUrl String Specifies the URL that will be used by Microsoft's authorization service to logout a user using front-channel, back-channel or SAML logout protocols.
redirectUris String collection 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.
redirectUriSettings redirectUriSettings collection Specifies the index of the URLs where user tokens are sent for sign-in. This is only valid for applications using SAML.

JSON representation

The following JSON representation shows the resource type.

{
  "homePageUrl": "String",
  "implicitGrantSettings": {"@odata.type": "microsoft.graph.implicitGrantSettings"},
  "logoutUrl": "String",
  "redirectUris": ["String"],
  "redirectUriSettings": [
    {
      "@odata.type": "microsoft.graph.redirectUriSettings"
    }
  ],
}