# Retrieves a summary overview of the specified announcement Returns the summary overview of the specified announcement collection, including the message text, deployment status, target count, and schedule window. ## Endpoint `GET /dcapi/tools/announcement/{collectionId}/details` ## Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/announcement/{collectionId}/details ## Scope `DesktopCentralCloud.Tools.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Parameter | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | `application/json` | ### Path Parameters | Parameter | Type | Required | Description | |---|---|---|---| | collectionId | string | Mandatory | The unique identifier of the system tools collection | ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/tools/announcement/{collectionId}/details \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: `application/json` | Parameter | Type | Description | |---|---|---| | collectionId | long | Announcement collection unique identifier | | label | string | Announcement display label | | status | string | Deployment status: Active, Suspended, Completed | | targetCount | integer | Number of target computers or users | | startTime | long | Scheduled start time (epoch) | | endTime | long | Scheduled end time (epoch) | | messageSummary | string | Truncated announcement message preview | ## Sample Response: HTTP 200 ```json { "messageSummary": "System maintenance scheduled tonight.", "startTime": 1711400000000, "label": "Maintenance Window Notice", "endTime": 1711436000000, "collectionId": 7, "targetCount": 40, "status": "Active" } ``` ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ## Rate Limits ![](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.