# Retrieves a summary overview of the specified system tools task Returns the summary overview details of the specified system tools collection task, including label, configuration type, deployment status, tool list, and target summary. ## Endpoint `GET /dcapi/tools/systemTools/{collectionId}/details` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/tools/systemTools/{collectionId}/details` ### Scope `Tools.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory: `application/json` #### Path Parameters - **collectionId** `string` — Mandatory - The unique identifier of the system tools collection ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/tools/systemTools/{collectionId}/details \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `collectionId` `long` - System tools collection task unique identifier - `label` `string` - User-defined task label - `configurationType` `string` - Primary tool type: `CHECK_DISK`, `DISK_DEFRAGMENTER`, `CLEAN_UP_DISK`, or `ST_SCHEDULER` - `status` `string` - Current task status: Active, Suspended, Draft - `targetCount` `integer` - Number of target computers - `lastExecutedTime` `long` - Epoch timestamp of the last execution ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 ```json { "lastExecutedTime": 1711180800000, "label": "Weekly Disk Cleanup", "configurationType": "CLEAN_UP_DISK", "collectionId": 12, "targetCount": 25, "status": "Active" } ``` ## Rate Limits **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.