Retrieves the latest experience score for a profile

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 most recent experience score for the specified profile, with optional filters for remote office, custom group, or resource.

Request URL

https://{server-hostname}:8383/intelligence/api/score/{scoreProfileId}/latestExperience

Scope

DEX.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

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

- Path Parameters

scoreProfileIdstringMandatory

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

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/intelligence/api/score/{scoreProfileId}/latestExperience \
  --header 'Accept: application/getLatestExperience.v1+json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
scoreinteger

Overall experience score

healthinteger

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

isCustomCategoriesExistsboolean

Indicates if custom score categories exist

categoryJSON Array

Array of category scores

Show Sub-Attributes
JSON Object
Show Sub-Attributes
categoryHealthinteger

Health status of the category (0=poor, 1=average, 2=good, 3=unknown)

categoryScorestring

Score for the category

categoryNamestring

Name of the category

baseLineScoreinteger

Baseline score for comparison

changeFromPreviousDayinteger

Change in score from the previous day

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "score": 89,
    "health": 2,
    "isCustomCategoriesExists": true,
    "category": [
      {
        "categoryHealth": 2,
        "categoryScore": "92",
        "categoryName": "Device Performance"
      },
      {
        "categoryHealth": 2,
        "categoryScore": "100",
        "categoryName": "Application Reliability"
      },
      {
        "categoryHealth": 2,
        "categoryScore": "82",
        "categoryName": "Device Stability"
      },
      {
        "categoryHealth": 2,
        "categoryScore": "100",
        "categoryName": "Device Responsiveness"
      },
      {
        "categoryHealth": 1,
        "categoryScore": "58",
        "categoryName": "Sensor Category"
      },
      {
        "categoryHealth": null,
        "categoryScore": "--",
        "categoryName": "Sentiment Category"
      }
    ],
    "baseLineScore": 75,
    "changeFromPreviousDay": 10
  }
                
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.