# Retrieves tool deployment details for a specific custom group Returns the list of tool deployment configurations (System Tools, Shutdown, WOL, Announcement) that target the specified custom group, identified by the 'customGroupId' query parameter. ## Endpoints **GET** `/dcapi/tools/cgDeployments` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/cgDeployments ## Scope `DesktopCentralCloud.Tools.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` **Mandatory**: `application/json` ### Query Parameters - **customGroupId** `long` **Mandatory** Unique ID of the custom group to retrieve tool deployment configurations for. Required ## Sample Request ```curl curl --request GET \ --url 'https://appdomains/dcapi/tools/cgDeployments?customGroupId=SOME_INTEGER_VALUE' \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json `JSON Object` - **deployments** `array` Array of deployment objects with deploymentType, taskName, taskId, and status for each tool targeting the specified custom group ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "deployments": [ { "deploymentType": "SystemTools", "taskName": "Weekly Cleanup", "taskId": 12, "status": "Active" }, { "deploymentType": "Shutdown", "taskName": "Nightly Shutdown", "taskId": 5, "status": "Active" } ] } ``` ![ ](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.