<!--
{
  "availability" : [
    "iOS: 16.0.0 -",
    "iPadOS: 16.0.0 -",
    "macCatalyst: 16.0.0 -",
    "tvOS: 16.0.0 -",
    "visionOS: 1.1.0 -",
    "watchOS: 10.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "DeviceManagement",
  "identifier" : "/documentation/DeviceManagement/StatusMDMApp",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Device Management"
    ],
    "preciseIdentifier" : "rmdm-status:StatusMDMApp"
  },
  "title" : "StatusMDMApp"
}
-->

# StatusMDMApp

The status item that lists the devices’s MDM-installed apps.

```
object StatusMDMApp
```

## Discussion

### Status item availability

|||
|--------------------------------|-----------------------------------------|
|Allowed in supervised enrollment|iOS, Shared iPad, tvOS, visionOS, watchOS|
|Allowed in device enrollment    |iOS, Shared iPad, tvOS, visionOS         |
|Allowed in user enrollment      |iOS, Shared iPad, visionOS               |
|Allowed in local enrollment     |N/A                                      |
|Allowed in system scope         |iOS, Shared iPad, tvOS, visionOS, watchOS|
|Allowed in user scope           |Shared iPad                              |

### Status item example

**New or updated app:**

Reports a new or updated app.

```json
{
    "mdm": {
        "app": [
            {
                "identifier": "com.example.enterprise.app",
                "name": "Enterprise App",
                "version": "3.1.0",
                "short-version": "3.1.0",
                "state": "managed"
            }
        ]
    }
}
```

**Removed app:**

Reports a removed app.

```json
{
    "mdm": {
        "app": [
            {
                "identifier": "com.example.enterprise.app",
                "_removed": true
            }
        ]
    }
}
```

## Topics

### Objects

[`object StatusMDMAppAppObject`](/documentation/DeviceManagement/StatusMDMAppAppObject)

A status report that contains details about an MDM-installed app.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)