customExtensionCalloutResponse 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 custom extension callout response payload that external systems send back for callback scenarios of custom extensions.
Properties
Property | Type | Description |
---|---|---|
data | customExtensionData | Contains the data the external system provides to the custom extension endpoint. |
source | String | Identifies the external system or event context related to the response. |
type | String | Describes the type of event related to the response. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customExtensionCalloutResponse",
"source": "String",
"type": "String",
"data": {
"@odata.type": "microsoft.graph.customExtensionData"
}
}