# Retrieves detailed experience metrics for a device Returns indicator-wise experience metrics, including scores, health status, and metric details for the specified profile and resource, with optional filtering for metrics with issues. ## Endpoint `GET /intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes` ## Request ### Request URL `https://{server-hostname}:8383/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes` ### Scope `DEX.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/getDeviceNode.v1+json` #### Path Parameters - **scoreProfileId** (`string`, Mandatory): Score Profile Id obtained from DEX - Get Metadata API `/intelligence/api/comon/meta` - **agentResourceId** (`string`, Mandatory): Resource Id obtained from SoM - Get Computers API `/api/1.4/som/computers` ### Sample Request ```curl curl --request GET \ --url https://appdomain/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes \ --header 'Accept: application/getDeviceNode.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body: `application/json` - `JSON Array` - `JSON Object` ### Possible Response Codes - **200**: HTTP code ### Sample Response: HTTP 200 ```json [ { "indicator": "Device Performance", "metrics": [ { "metric_id": "3", "score": "100", "scoreDisplayName": "CPU Usage", "scoreHealth": 2, "primaryRenderText": "Average CPU usage (1 day): 7.98 %" }, { "metric_id": "4", "score": "97", "scoreDisplayName": "CPU Interrupt", "scoreHealth": 2, "primaryRenderText": "Average CPU interrupt (7 days): 0.17 %" } ] }, { "indicator": "Application Reliability", "metrics": [ { "metric_id": "16", "score": "100", "scoreDisplayName": "Application Crash", "scoreHealth": 2, "primaryRenderText": "Application crash (7 days): 0 crashes" } ] } ] ``` ## Rate Limit ![Help icon](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.