@JamesEdmondsUKPN, Thanks for posting in Q&A. Based on my log capturing from Edge DevTool, I find the following method to get the device install status for one specific win32 app.
And when using Graph explorer to get the information, we can try the following:
Action: POST
Version: Beta
URL:https://graph.microsoft.com/beta/deviceManagement/reports/getDeviceInstallStatusReport
Request Body:
{
"select": [
"DeviceName",
"UserPrincipalName",
"Platform",
"AppVersion",
"InstallState",
"InstallStateDetail",
"AssignmentFilterIdsExist",
"LastModifiedDateTime",
"DeviceId",
"ErrorCode",
"UserName",
"UserId",
"ApplicationId",
"AssignmentFilterIdsList",
"AppInstallState",
"AppInstallStateDetails",
"HexErrorCode"
],
"skip": 0,
"top": 50,
"filter": "(ApplicationId eq '<your app id>')",
"orderBy": []
}
Hope the above information can help.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.