Retrieves experience and device details

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 baseline and current experience scores along with device information, OS details, health status, and last update time for the specified profile and resource

Request URL

https://{server-hostname}:8383/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}

Scope

DEX.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

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

- Path Parameters

scoreProfileIdstringMandatory

Score Profile Id obtained from DEX - Get Metadata API /intelligence/api/comon/meta

agentResourceIdstringMandatory

Resource Id obtained from SoM - Get Computers API /api/1.4/som/computers

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
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
JSON Object
Hide Sub-Attributes
baselineScorestring

Baseline score for the device

experienceScorestring

Current experience score of the device

osstring

Operating system name

osVersionstring

Operating system version

lastLogonUserstring

Username of the last logged-on user

namestring

Device name

modelstring

Device model

scoreHealthinteger

Health status for overall experience (0=poor, 1=average, 2=good, 3=unknown)

lastUpdatedTimestring

Time when device score data was last updated

typestring

Device type (e.g., NoteBook, Desktop)

platformstring

Platform identifier (e.g., windows, mac)

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "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"
  }
                
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.