Skip to content

Latest commit

 

History

History
71 lines (60 loc) · 2.58 KB

File metadata and controls

71 lines (60 loc) · 2.58 KB
title urlThreatSubmission resource type
description Represent a threat submission related to a URL
author caigen
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType
ms.date 07/22/2024

urlThreatSubmission resource type

Namespace: microsoft.graph.security

[!INCLUDE beta-disclaimer]

Represent a threat submission related to a URL.

This resource is used to submit suspected phishing URLs to Microsoft Defender for Office 365. It can also be used to submit false positive cases that should not have been blocked, such as safe URLs.

Inherits from threatSubmission.

Methods

Method Return type Description
List microsoft.graph.security.urlThreatSubmission collection Get a list of the urlThreatSubmission objects and their properties.
Create microsoft.graph.security.urlThreatSubmission Create a new urlThreatSubmission object.
Get microsoft.graph.security.urlThreatSubmission Read the properties and relationships of an urlThreatSubmission object.

Properties

Property Type Description
webUrl String Denotes the webUrl that needs to be submitted.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.urlThreatSubmission",
  "id": "String (identifier)",
  "tenantId": "String",
  "createdDateTime": "String (timestamp)",
  "contentType": "String",
  "category": "String",
  "source": "String",
  "createdBy": {
    "@odata.type": "microsoft.graph.security.submissionUserIdentity"
  },
  "status": "String",
  "result": {
    "@odata.type": "microsoft.graph.security.submissionResult"
  },
  "adminReview": {
    "@odata.type": "microsoft.graph.security.submissionAdminReview"
  },
  "clientSource": "String",
  "webUrl": "String"
}