Retrieves sidebar details for a selected timeline item

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

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.

Request URL

https://{serverurl}/intelligence/api/dataStream/{resourceId}/details

Scope

DesktopCentralCloud.DEX.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/details.v1+jsonapplication/details.v1+jsonCopied!

- Path Parameters

resourceIdstringMandatory

- Query Parameters

startTimestringOptional

Start of the selected time range in epoch milliseconds

endTimestringOptional

End of the selected time range in epoch milliseconds

groupIdstringOptional

Timeline group identifier that maps to the configured timeline chart group

metricIdstringOptional

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
Java
Python
Deluge
PowerShell
Copied!
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
Hide Sub-Attributes
titlestring

Sidebar title for the selected timeline metric or event group

timestring

Formatted time range for the selected timeline window

eventsJSON Array

Event blocks returned for the selected metric and time range

Show Sub-Attributes
JSON Object
Show Sub-Attributes
eventNamestring

Event label shown in the sidebar; may be absent for maintenance or generic summary blocks

eventTimestring

Formatted event time shown for point-in-time events; may be absent for summary blocks

eventDataJSON Array

One or more detail sections under the event

Show Sub-Attributes
JSON Object
Show Sub-Attributes
eventTitlestring

Title of the detail section such as CPU information, top apps, or a maintenance message

infoJSON Array

Label-value pairs shown within the detail section

Show Sub-Attributes
JSON Object
Show Sub-Attributes
labelstring

Human-readable field label for the sidebar row

valuestring

Display value for the sidebar row

isHTMLEncodedboolean

Indicates whether the value contains HTML that should be rendered safely by the UI

ziaAnomalyJSON Object

Anomaly insight block when anomaly detection is available for the selected metric

Show Sub-Attributes
messagestring

Anomaly insight message for the selected timeline metric or event

isHTMLEncodedboolean

Indicates whether the event name contains HTML content intended for safe UI rendering

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "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"
        }
      }
    ]
  }
                
Show full

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.