GET
/v1/organizations/:organizationId/mdm/android/enterprise/applications/:applicationName
Copy to clipboard
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
Add parameter in header
authorization
Example:
Authorization: Bearer <token>
organizationId
string
required
applicationName
string
required
Responses
200 Response
application/json
status
boolean
optional
data
object
optional
name
string
optional
title
string
optional
permissions
array [object]
optional
permissionId
string
optional
name
string
optional
description
string
optional
managedProperties
array [object]
optional
key
string
optional
type
string
optional
title
string
optional
description
string
optional
entries
array [object]
optional
value
string
optional
name
string
optional
defaultValue
string
optional
nestedProperties
array [object]
optional
appTracks
array [object]
optional
trackId
string
optional
trackAlias
string
optional
cached
boolean
optional
{
"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
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}