Remove previously blocklisted apps from device groups

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

Remove blacklisting of app from device apps from Groups

Request URL

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

Scope

MDMInventory.DELETECopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

Content-TypestringMandatory
application/jsonapplication/jsonCopied!
AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Request Body

application/json
JSON Object
Hide Sub-Attributes
resource_idsarrayMandatory

Array of device or group resource IDs from which to remove the blocklist. Obtain device IDs from the Get Device List response or group IDs from the Get Group List response

app_group_idsarrayMandatory

Array of app group IDs to remove from the blocklist on the specified devices or groups. Obtain from the Get Blocklist Status response

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request DELETE \
  --url https://appdomain/api/v1/mdm/blacklist/groups \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52' \
  --header 'Content-Type: application/json' \
  --data '{"app_group_ids":[1,2,3],"resource_ids":[1,2,3]}'

Sample Request Body

Remove blocklist for 3 app groups from 3 device groups

Copied!
  {
    "app_group_ids": [
      1,
      2,
      3
    ],
    "resource_ids": [
      1,
      2,
      3
    ]
  }
                
Show full

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
resource_idsarray

Array of device or group resource IDs from which the blocklist was removed

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Blocklist successfully removed from groups

Copied!
  {
    "resource_ids": [
      1,
      2,
      3
    ]
  }
                
Show full

Duration: 1 minute | Threshold: 60 | 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.