# 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 ## Endpoints **GET** `/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}` ## Request URL `https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}` ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** - `application/getDeviceMeta.v1+json` ### Path Parameters - **scoreProfileId** `string` — **Mandatory** - Score profile identifier. Fetch from [Get Metadata](https://www.manageengine.com/products/desktop-central/help/api/cloud/dex-get-metadata.html). - **agentResourceId** `string` — **Mandatory** - Device resource identifier obtained from the SoM Get Computers API (`/api/1.4/som/computers`). ## Sample Request ### Curl ```curl curl --request GET \ --url https://appdomains/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId} \ --header 'Accept: application/getDeviceMeta.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json `JSON Object` - **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) ## Possible Response Codes - **200** `HTTP code` ## 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" } ``` ![](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.