Add new app to repository for blocklisting
post /api/v1/mdm/blacklist/apps
https://{server-hostname}:8383/api/v1/mdm/blacklist/apps
MDMInventory.CREATECopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
When true, only validates the request and returns validation errors without persisting changes. Default: false
Array of app objects to add to the blocklist repository
Unique identifier (bundle ID / package name) of the app (e.g., com.manageengine.mdm.android)
Platform of the app: 1 = iOS, 2 = Android, 3 = Windows
Display name of the app (e.g., Zylker MDM)
curl --request POST \
--url 'https://appdomain/api/v1/mdm/blacklist/apps?validate=SOME_BOOLEAN_VALUE' \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \
--header 'Content-Type: application/json' \
--data '{"apps":[{"identifier":"com.manageengine.mdm.android","appname":"Zylker MDM","platform":2},{"identifier":"com.zylker.chatapp","appname":"Chat App","platform":1}]}'Add two apps (Android and iOS) to the blocklist repository
{
"apps": [
{
"identifier": "com.manageengine.mdm.android",
"appname": "Zylker MDM",
"platform": 2
},
{
"identifier": "com.zylker.chatapp",
"appname": "Chat App",
"platform": 1
}
]
}
Add a single Android app to the blocklist repository
{
"apps": [
{
"identifier": "com.zylker.socialapp",
"appname": "Social App",
"platform": 2
}
]
}
Array of apps that were added to the blocklist repository with their assigned app group IDs
Unique identifier (bundle ID / package name) of the app
App group ID used to reference the app in other API calls
Platform of the app: 1 = iOS, 2 = Android, 3 = Windows
Display name of the app
Apps successfully added to the blocklist repository with assigned app group IDs
{
"apps": [
{
"identifier": "com.manageengine.mdm.android",
"appname": "Zylker MDM",
"appgroupid": 9007199254741064,
"platform": 2
},
{
"identifier": "com.zylker.chatapp",
"appname": "Chat App",
"appgroupid": 9007199254741068,
"platform": 1
}
]
}
![]()
Duration: 1 minute | Threshold: 30 | 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.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.