mobileAppTroubleshootingEvent 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.
Event representing a users device application install status for device management and troubleshooting event workflows.
Methods
Method | Return Type | Description |
---|---|---|
List mobileAppTroubleshootingEvents | mobileAppTroubleshootingEvent collection | List properties and relationships of the mobileAppTroubleshootingEvent objects. |
Get mobileAppTroubleshootingEvent | mobileAppTroubleshootingEvent | Read properties and relationships of the mobileAppTroubleshootingEvent object. |
Create mobileAppTroubleshootingEvent | mobileAppTroubleshootingEvent | Create a new mobileAppTroubleshootingEvent object. |
Delete mobileAppTroubleshootingEvent | None | Deletes a mobileAppTroubleshootingEvent. |
Update mobileAppTroubleshootingEvent | mobileAppTroubleshootingEvent | Update the properties of a mobileAppTroubleshootingEvent object. |
Properties
Property | Type | Description |
---|---|---|
id | String | UUID for the object. |
Troubleshooting | ||
additionalInformation | keyValuePair collection | A set of string key and string value pairs which provides additional information on the Troubleshooting event Inherited from deviceManagementTroubleshootingEvent |
applicationId | String | Intune application identifier. |
correlationId | String | ID used for tracing the failure in the service. |
eventDateTime | DateTimeOffset | Time when the event occurred . |
eventName | String | Event Name corresponding to the Troubleshooting Event. Optional |
history | mobileAppTroubleshootingHistoryItem collection | Intune Mobile Application Troubleshooting History Item |
managedDeviceIdentifier | String | Device identifier created or collected by Intune. |
troubleshootingErrorDetails | deviceManagementTroubleshootingErrorDetails | Object containing detailed information about the error and its remediation. Inherited from deviceManagementTroubleshootingEvent |
userId | String | Identifier for the user that tried to enroll the device. |
Relationships
Relationship | Type | Description |
---|---|---|
Device management | ||
appLogCollectionRequests | appLogCollectionRequest collection | The collection property of AppLogUploadRequest. |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.mobileAppTroubleshootingEvent",
"id": "String (identifier)",
"eventDateTime": "String (timestamp)",
"correlationId": "String",
"troubleshootingErrorDetails": {
"@odata.type": "microsoft.graph.deviceManagementTroubleshootingErrorDetails",
"context": "String",
"failure": "String",
"failureDetails": "String",
"remediation": "String",
"resources": [
{
"@odata.type": "microsoft.graph.deviceManagementTroubleshootingErrorResource",
"text": "String",
"link": "String"
}
]
},
"eventName": "String",
"additionalInformation": [
{
"@odata.type": "microsoft.graph.keyValuePair",
"name": "String",
"value": "String"
}
],
"managedDeviceIdentifier": "String",
"userId": "String",
"applicationId": "String",
"history": [
{
"@odata.type": "microsoft.graph.mobileAppTroubleshootingHistoryItem",
"occurrenceDateTime": "String (timestamp)"
}
]
}