Retrieve Android store application details
Required Permission: mdm.android.application.getApplication
Retrieves Android application metadata and configuration from the Enterprise store by package name.
Request
authorization
Authorization: Bearer <token>
Responses
application/json
{
"status": true,
"data": {
"name": "com.google.android.apps.docs",
"title": "Google Docs",
"permissions": [
{
"permissionId": "android.permission.CAMERA",
"name": "Camera",
"description": "Allows the application to take pictures and record videos using the camera."
}
],
"managedProperties": [
{
"key": "serverUrl",
"type": "STRING",
"title": "Server URL",
"description": "The URL of the backend server for API communication.",
"entries": [
{
"value": "production",
"name": "Production Environment"
}
],
"defaultValue": "https://api.example.com",
"nestedProperties": [
{}
]
}
],
"appTracks": [
{
"trackId": "production",
"trackAlias": "Production"
}
],
"cached": true
}
}
application/json
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
application/json
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}