deviceManagementReportSchedule resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Entity representing a schedule for which reports are delivered

Methods

Method Return Type Description
List deviceManagementReportSchedules deviceManagementReportSchedule collection List properties and relationships of the deviceManagementReportSchedule objects.
Get deviceManagementReportSchedule deviceManagementReportSchedule Read properties and relationships of the deviceManagementReportSchedule object.
Create deviceManagementReportSchedule deviceManagementReportSchedule Create a new deviceManagementReportSchedule object.
Delete deviceManagementReportSchedule None Deletes a deviceManagementReportSchedule.
Update deviceManagementReportSchedule deviceManagementReportSchedule Update the properties of a deviceManagementReportSchedule object.

Properties

Property Type Description
id String Unique identifier for this entity
reportScheduleName String Name of the schedule
subject String Subject of the scheduled reports that are delivered
emails String collection Emails to which the scheduled reports are delivered
recurrence deviceManagementScheduledReportRecurrence Frequency of scheduled report delivery. Possible values are: none, daily, weekly, monthly.
startDateTime DateTimeOffset Time that the delivery of the scheduled reports starts
endDateTime DateTimeOffset Time that the delivery of the scheduled reports ends
userId String The Id of the User who created the report
reportName String Name of the report
filter String Filters applied on the report
select String collection Columns selected from the report
orderBy String collection Ordering of columns in the report
format deviceManagementReportFileFormat Format of the scheduled report. Possible values are: csv, pdf.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementReportSchedule",
  "id": "String (identifier)",
  "reportScheduleName": "String",
  "subject": "String",
  "emails": [
    "String"
  ],
  "recurrence": "String",
  "startDateTime": "String (timestamp)",
  "endDateTime": "String (timestamp)",
  "userId": "String",
  "reportName": "String",
  "filter": "String",
  "select": [
    "String"
  ],
  "orderBy": [
    "String"
  ],
  "format": "String"
}