| title | customCalloutExtension resource type |
|---|---|
| description | An abstract type that defines the configuration for apps that can be integrated with the customer's identity flows. |
| author | vikama-microsoft |
| ms.localizationpriority | medium |
| ms.subservice | entra-id-governance |
| doc_type | resourcePageType |
| ms.date | 07/23/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
An abstract type that defines the configuration for apps that can extend the customer's identity flows.
This abstract type is inherited by the following derived types.
- customAccessPackageWorkflowExtension
- customAuthenticationExtension
- customTaskExtension
- accessPackageAssignmentRequestWorkflowExtension
- accessPackageAssignmentWorkflowExtension
Inherits from entity.
| Property | Type | Description |
|---|---|---|
| authenticationConfiguration | customExtensionAuthenticationConfiguration | Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow. |
| clientConfiguration | customExtensionClientConfiguration | HTTP connection settings that define how long Microsoft Entra ID can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed. |
| description | String | Description for the customCalloutExtension object. |
| displayName | String | Display name for the customCalloutExtension object. |
| endpointConfiguration | customExtensionEndpointConfiguration | The type and details for configuring the endpoint to call the logic app's workflow. |
| id | String | Identifier for the customCalloutExtension object. Inherited from entity. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customCalloutExtension",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"endpointConfiguration": {
"@odata.type": "microsoft.graph.customExtensionEndpointConfiguration"
},
"clientConfiguration": {
"@odata.type": "microsoft.graph.customExtensionClientConfiguration"
},
"authenticationConfiguration": {
"@odata.type": "microsoft.graph.customExtensionAuthenticationConfiguration"
}
}