Edit

genericCase resource type

Namespace: microsoft.graph.security.caseManagement

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 a generic case with assignment, priority, due date, and closing notes. This resource derives from case and participates in the polymorphic /security/caseManagement/cases collection.

Inherited from case.

Methods

This resource is part of a polymorphic collection managed by the case resource base type. Operations are performed through the base type endpoints.

Use the base type Update method to update assignedTo, closingNotes, description, displayName, dueDateTime, priority, and status.

Properties

Property Type Description
assignedTo String The user assigned to the generic case.
closingNotes String Notes recorded when the generic case is closed.
createdBy String The user or service that created the resource. Inherited from caseManagementEntity.
createdDateTime DateTimeOffset The date and time when the resource was created. Inherited from caseManagementEntity.
customFields microsoft.graph.security.caseManagement.customFieldValues Tenant-defined custom field values keyed by custom field identifier. Inherited from case.
description String The description of the generic case.
displayName String The display name of the generic case. Inherited from case.
dueDateTime DateTimeOffset The target completion date and time for the generic case.
id String The unique identifier for the resource. Inherited from entity.
lastModifiedBy String The user or service that last modified the resource. Inherited from caseManagementEntity.
lastModifiedDateTime DateTimeOffset The date and time when the resource was last modified. Inherited from caseManagementEntity.
priority String The priority assigned to the generic case.
status String The lifecycle status of the generic case. Inherited from case.

Relationships

Relationship Type Description
activities microsoft.graph.security.caseManagement.activity collection The timeline of comments and audit events associated with the case. Inherited from case.
attachments microsoft.graph.security.caseManagement.attachment collection Evidence files and metadata associated with the case. Inherited from case.
relations microsoft.graph.security.caseManagement.relation collection Links from the case to related security resources. Inherited from case.
tasks microsoft.graph.security.caseManagement.task collection Tasks used to track work required to resolve the case. Inherited from case.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.caseManagement.genericCase",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "createdBy": "String",
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": "String",
  "displayName": "String",
  "status": "String",
  "customFields": {
    "@odata.type": "#microsoft.graph.security.caseManagement.customFieldValues"
  },
  "description": "String",
  "closingNotes": "String",
  "assignedTo": "String",
  "priority": "String",
  "dueDateTime": "String (timestamp)"
}