<!--
{
  "availability" : [
    "iOS: 7.0.0 -",
    "iPadOS: 7.0.0 -",
    "macCatalyst: 7.0.0 -",
    "macOS: 11.0.0 -",
    "tvOS: 10.2.0 -",
    "visionOS: 1.1.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "DeviceManagement",
  "identifier" : "/documentation/DeviceManagement/Managed-Application-Feedback-Command",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Device Management"
    ],
    "preciseIdentifier" : "rest:put:mdm#ManagedApplicationFeedbackCommand"
  },
  "title" : "Managed Application Feedback"
}
-->

# Managed Application Feedback

Get app feedback from a managed app on the device.

## Discussion

This command allows the server to get the feedback information of managed apps. In macOS 12 and later, macOS supports this command on the user channel.

The response doesn’t include apps that Declarative Device Management is managing.

Refer to the following sections to determine supported channels and requirements, and to see an example request and response.

### Command availability

|||
|--------------------------|--------------------------------|
|Device channel            |iOS, Shared iPad, tvOS, visionOS|
|User channel              |macOS                           |
|Requires supervision      |N/A                             |
|Allowed in user enrollment|iOS, macOS, visionOS            |
|Required access right     |AllowAppInstallation            |

### Example request and response

**Request:**

```plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Command</key>
    <dict>
        <key>DeleteFeedback</key>
        <false/>
        <key>Identifiers</key>
        <array>
            <string>com.acme.myenterpriseapp</string>
        </array>
        <key>RequestType</key>
        <string>ManagedApplicationFeedback</string>
    </dict>
    <key>CommandUUID</key>
    <string>0001_ManagedApplicationFeedback</string>
</dict>
</plist>
```

**Response:**

```plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CommandUUID</key>
    <string>0090_ManagedApplicationFeedback</string>
    <key>ManagedApplicationFeedback</key>
    <array>
        <dict>
            <key>Feedback</key>
            <dict>
                <key>feedback</key>
                <string>Feedback</string>
            </dict>
            <key>Identifier</key>
            <string>com.acme.myenterpriseapp</string>
        </dict>
    </array>
    <key>Status</key>
    <string>Acknowledged</string>
    <key>UDID</key>
    <string>00008020-000915083C80012E</string>
</dict>
</plist>
```

## Topics

### Commands and responses

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

The command to get app feedback from a managed app on the device.

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

A response from the device after it processes the command to get app feedback from a managed app on the device.



---

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)