analyzedEmailUrl resource type
Namespace: microsoft.graph.security
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.
Represents information about URLs found in an analyzed email.
Properties
Property | Type | Description |
---|---|---|
detectionMethod | String | The method used to detect threats in the URL. |
detonationDetails | microsoft.graph.security.detonationDetails | Detonation data associated with the URL. |
threatType | microsoft.graph.security.threatType | The type of threat associated with the URL. The possible values are: unknown , spam , malware , phishing , none , unknownFutureValue . |
url | String | The URL that is found in the email. This is full URL string, including query parameters. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.analyzedEmailUrl",
"url": "String",
"threatType": "String",
"detectionMethod": "String",
"detonationDetails": {
"@odata.type": "microsoft.graph.security.detonationDetails"
}
}