onTokenIssuanceStartCustomExtension 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.
Custom extension to invoke when handling the event when a token is about to be issued to your application.
Inherits from customAuthenticationExtension.
Methods
None.
For the list of API operations for managing this resource type, see the customAuthenticationExtension resource type.
Properties
Property | Type | Description |
---|---|---|
authenticationConfiguration | customExtensionAuthenticationConfiguration | The authentication configuration for this custom authentication extension. Inherited from customCalloutExtension. |
claimsForTokenConfiguration | onTokenIssuanceStartReturnClaim collection | Collection of claims to be returned by the API called by this custom authentication extension. |
clientConfiguration | customExtensionClientConfiguration | The connection settings for the custom authentication extension. Inherited from customCalloutExtension. |
description | String | Description for the custom authentication extension. Inherited from customCalloutExtension. |
displayName | String | Display name for the custom authentication extension. Inherited from customCalloutExtension. |
endpointConfiguration | customExtensionEndpointConfiguration | Configuration for the API endpoint that the custom authentication extension will call. Inherited from customCalloutExtension. |
id | String | Identifier for onTokenIssuanceStartCustomExtension. Inherited from entity. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.onTokenIssuanceStartCustomExtension",
"id": "String (identifier)",
"authenticationConfiguration": {
"@odata.type": "microsoft.graph.customExtensionAuthenticationConfiguration"
},
"clientConfiguration": {
"@odata.type": "microsoft.graph.customExtensionClientConfiguration"
},
"description": "String",
"displayName": "String",
"endpointConfiguration": {
"@odata.type": "microsoft.graph.customExtensionEndpointConfiguration"
},
"claimsForTokenConfiguration": [
{
"@odata.type": "microsoft.graph.onTokenIssuanceStartReturnClaim"
}
]
}