analyzedEmailAttachment 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 an attachment to an analyzed email.

Properties

Property Type Description
detonationDetails microsoft.graph.security.detonationDetails The detonation details of the attachment.
fileName String The name of the attachment in the email.
fileType String The type of the attachment in the email.
sha256 String The SHA256 file hash of the attachment.
threatName String The threat name associated with the threat type.
threatType microsoft.graph.security.threatType The threat type associated with the attachment. The possible values are: unknown, spam, malware, phishing, none, unknownFutureValue.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.analyzedEmailAttachment",
  "fileName": "String",
  "fileType": "String",
  "threatType": "String",
  "threatName": "String",
  "sha256": "String",
  "detonationDetails": {
    "@odata.type": "microsoft.graph.security.detonationDetails"
  }
}