# 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://{server-hostname}:8383/dcapi/tools/cgDeployments` ## Scope `Tools.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` **Mandatory**: `application/json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/tools/cgDeployments \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: application/json - `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.