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

Defines the calls that were made by an instance of a custom extension callout.

Properties

Property Type Description
customExtensionId String Identification of the custom extension that was triggered at this instance.
detail String Details provided by the logic app during the callback of the request instance.
externalCorrelationId String The unique run identifier for the logic app.
id String Unique identifier for the callout instance. Read-only.
status customExtensionCalloutInstanceStatus The status of the request to the custom extension. The possible values are: calloutSent, callbackReceived, calloutFailed, callbackTimedOut, waitingForCallback, unknownFutureValue.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.customExtensionCalloutInstance",
  "id": "String (identifier)",
  "customExtensionId": "String",
  "externalCorrelationId": "String",
  "detail": "String",
  "status": "String"
}