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

When OAuth2 Client Credentials Grant is to be used to connect to the data provider, this connection settings type should be used to set up the profile.

Derived from educationSynchronizationConnectionSettings.

Properties

Property Type Description
clientId String Client ID used to connect to the provider. Inherited from educationSynchronizationConnectionSettings.
clientSecret String Client secret to authenticate the connection to the provider. Inherited from educationSynchronizationConnectionSettings.
tokenUrl String The URL to get access tokens for the data provider.
scope String The scope of the access request (see RFC6749).

JSON representation

{
  "@odata.type": "#microsoft.graph.educationSynchronizationOAuth2ClientCredentialsConnectionSettings",
  "clientId": "String",
  "clientSecret": "String",
  "tokenUrl": "String",
  "scope": "String"
}