customExtensionClientConfiguration 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.
Connection settings that define how long Microsoft Entra ID can wait for a response from an external app before it shuts down the connection when trying to trigger the external app.
Properties
Property | Type | Description |
---|---|---|
timeoutInMilliseconds | Int32 | The max duration in milliseconds that Microsoft Entra ID waits for a response from the external app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. If null , the default for the service applies. |
maximumRetries | Int32 | The max number of retries that Microsoft Entra ID makes to the external API. Values of 0 or 1 are supported. If null , the default for the service applies. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customExtensionClientConfiguration",
"timeoutInMilliseconds": "Integer",
"maximumRetries": "Integer"
}