customExtensionCalloutRequest 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 request payload that's sent to external systems.
Properties
Property | Type | Description |
---|---|---|
data | customExtensionData | Contains the data that will be provided to the external system. |
source | String | Identifies the source system or event context related to the callout request. |
type | String | Describes the type of event related to the callout request. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customExtensionCalloutRequest",
"source": "String",
"type": "String",
"data": {
"@odata.type": "microsoft.graph.customExtensionData"
}
}