Favicon

You are here: Home > API Reference > Android > Application Creation > Retrieve Android store application details

Retrieve Android store application details

Required Permission: mdm.android.application.getApplication

Retrieves Android application metadata and configuration from the Enterprise store by package name.

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
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$
applicationName string
required
Package name identifier for Android application in Google Play Store or enterprise catalog.
≤ 256 characters

Responses

200 Response application/json
status boolean optional
data object optional
name string optional
Google Play package name uniquely identifying Android application in enterprise catalog.
≤ 500 characters
title string optional
Human-readable application title retrieved from Google Play Store or enterprise metadata.
≤ 500 characters
permissions array [object] optional
Array of Android system permissions required by application for security review and approval.
permissionId string optional
Android system permission identifier defining device resource or data access capability.
≤ 500 characters
name string optional
Human-readable permission name describing access capability in enterprise approval workflows.
≤ 500 characters
description string optional
Detailed explanation of permission purpose and scope for security review and compliance.
≤ 500 characters
managedProperties array [object] optional
Array of managed configuration properties enabling enterprise administrators to configure application behavior remotely.
key string optional
Configuration property key identifier used for application managed configuration deployment.
≤ 500 characters
type string optional
Property data type defining validation and input handling for managed configuration values.
MANAGED_PROPERTY_TYPE_UNSPECIFIED BOOL STRING INTEGER CHOICE MULTISELECT HIDDEN BUNDLE BUNDLE_ARRAY
title string optional
Human-readable property label displayed in configuration interfaces and management consoles.
≤ 500 characters
description string optional
Detailed property explanation guiding administrators in configuration value selection and purpose.
≤ 500 characters
entries array [object] optional
Available configuration options for choice or multiselect properties in managed configuration.
value string optional
Configuration option value submitted to application when administrator selects this choice.
≤ 500 characters
name string optional
Human-readable label for configuration option displayed in administrator selection interfaces.
≤ 500 characters
defaultValue string optional
Default configuration value applied when administrator does not specify custom setting.
≤ 500 characters
nestedProperties array [object] optional
Nested configuration properties for bundle types allowing hierarchical application settings.
appTracks array [object] optional
Available Google Play distribution tracks for staged rollouts and version targeting.
trackId string optional
Google Play track identifier for application distribution channel and version management.
≤ 500 characters
trackAlias string optional
Human-readable track label describing distribution channel purpose in enterprise workflows.
≤ 500 characters
cached boolean optional
Flag indicating whether application metadata is cached locally or requires fresh Google Play synchronization.
{
    "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
false
error object optional
code number optional
4001
message string optional
Unauthorized
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}