# 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://{server-hostname}:8383/dcapi/tools/announcement/{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/announcement/{collectionId}/details \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 Response Body — `application/json` - **JSON Object** - **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 - **200**: HTTP code ## Rate Limit ![](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.