# Retrieves sidebar details for a selected timeline item Returns the sidebar detail payload for a selected timeline point, gantt segment, or bubble event. The exact event blocks depend on the requested timeline group and metric. ## Endpoint `GET /intelligence/api/dataStream/{resourceId}/details` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/intelligence/api/dataStream/{resourceId}/details ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** - `application/details.v1+json` ### Path Parameters - **resourceId** `string` — **Mandatory** ### Query Parameters - **startTime** `string` — Optional - Start of the selected time range in epoch milliseconds - **endTime** `string` — Optional - End of the selected time range in epoch milliseconds - **groupId** `string` — Optional - Timeline group identifier that maps to the configured timeline chart group - **metricId** `string` — Optional - Metric identifier within the requested group. It is usually a configured metric id, but some groups also accept a metric name string ## Sample Request ```curl curl --request GET \ --url https://appdomains/intelligence/api/dataStream/{resourceId}/details \ --header 'Accept: application/details.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — `application/json` - `JSON Object` - **title** `string` - Sidebar title for the selected timeline metric or event group - **time** `string` - Formatted time range for the selected timeline window - **events** `JSON Array` - Event blocks returned for the selected metric and time range ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "time": "Apr 01, 2026 10:00 AM - Apr 01, 2026 10:10 AM", "title": "CPU", "events": [ { "eventData": [ { "eventTitle": "CPU information", "info": [ { "isHTMLEncoded": false, "label": "Average CPU usage", "value": "27.5 %" }, { "isHTMLEncoded": false, "label": "CPU interrupt", "value": "0.17 %" } ] } ], "isHTMLEncoded": false, "eventTime": "10:10 AM", "eventName": "CPU Usage", "ziaAnomaly": { "message": "Spike detected for CPU usage" } } ] } ``` ## 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.