# Retrieves experience and device details Returns baseline and current experience scores along with device information, OS details, health status, and last update time for the specified profile and resource. ## Endpoint `GET /intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}` ## Request URL `https://{server-hostname}:8383/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}` ## Scope `DEX.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Name | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | `application/getDeviceMeta.v1+json` | ### Path Parameters | Name | Type | Required | Description | |---|---|---|---| | 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} \ --header 'Accept: application/getDeviceMeta.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response body: `application/json` | Name | Type | Description | |---|---|---| | baselineScore | string | Baseline score for the device | | experienceScore | string | Current experience score of the device | | os | string | Operating system name | | osVersion | string | Operating system version | | lastLogonUser | string | Username of the last logged-on user | | name | string | Device name | | model | string | Device model | | scoreHealth | integer | Health status for overall experience (0=poor, 1=average, 2=good, 3=unknown) | | lastUpdatedTime | string | Time when device score data was last updated | | type | string | Device type (e.g., NoteBook, Desktop) | | platform | string | Platform identifier (e.g., windows, mac) | ## Sample Response: HTTP 200 ```json { "baselineScore": "75", "experienceScore": "89", "os": "Windows 11 Professional Edition (x64)", "osVersion": "10.0.26200", "lastLogonUser": "test", "name": "test", "model": "Precision 5560", "scoreHealth": 2, "lastUpdatedTime": "Feb 12, 2026 04:10 PM", "type": "NoteBook", "platform": "windows" } ``` ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ![](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.