Retrieve the list of apps available for blocklisting

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Get Apps Present in Repository for Blocklisting

Endpoints

Request URL

https://{server-hostname}:8383/api/v1/mdm/blacklist/apps

Scope

MDMInventory.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Query Parameters

querystringOptional

Free-text query string used for advanced filtering of the resource

identifierstringOptional

Bundle/package identifier of the application (e.g., com.zoho.mdm)

platformstringOptional

Filter results by device platform. Allowed values: 1=iOS, 2=Android, 3=Windows, 4=macOS, 6=tvOS

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url 'https://appdomain/api/v1/mdm/blacklist/apps?query=SOME_STRING_VALUE&identifier=SOME_STRING_VALUE&platform=SOME_STRING_VALUE' \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
appsJSON Array

Array of apps available for blocklisting

Show Sub-Attributes
JSON Object
Show Sub-Attributes
identifierstring

Unique identifier (bundle ID / package name) of the app

appgroupidlong

App group ID used to reference the app in other API calls

platforminteger

Platform of the app: 1 = iOS, 2 = Android, 3 = Windows

appnamestring

Display name of the app

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

List of apps available for blocklisting across multiple platforms

Copied!
  {
    "apps": [
      {
        "identifier": "com.manageengine.mdm.android",
        "appname": "Zylker MDM",
        "appgroupid": 9007199254741064,
        "platform": 2
      },
      {
        "identifier": "com.zylker.testapp",
        "appname": "Test App",
        "appgroupid": 9007199254741066,
        "platform": 1
      }
    ]
  }
                
Show full

No apps available for blocklisting

Copied!
  {
    "apps": []
  }
                
Show full

Duration: 1 minute | Threshold: 250 | Lock period: 5 minutes

Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.