# Retrieve the current blocklist enforcement status on devices Get blocklist status ## Endpoints `GET /api/v1/mdm/blacklist/status` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/blacklist/status` ## Scope `MDMInventory.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory — `application/json` ## Sample Request ```bash curl --request GET \ --url https://appdomain/api/v1/mdm/blacklist/status \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — `application/json` - `JSON Object` - **Blackliststatus** `JSON Array` — Array of blocklist status entries per device and app ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 Blocklist status for multiple devices and apps showing various enforcement states: ```json { "Blackliststatus": [ { "identifier": "com.manageengine.mdm.android", "resourceId": 9007199254741064, "appname": "Zylker MDM", "status": 4 }, { "identifier": "com.zylker.chatapp", "resourceId": 9007199254741064, "appname": "Chat App", "status": 1 }, { "identifier": "com.zylker.testapp", "resourceId": 9007199254741064, "appname": "Test App", "status": 9 } ] } ``` No blocklist enforcement entries found: ```json { "Blackliststatus": [] } ``` ## API Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.