# Retrieves the latest experience score for a profile Returns the most recent experience score for the specified profile, with optional filters for remote office, custom group, or resource. ## Endpoint `GET /intelligence/api/score/{scoreProfileId}/latestExperience` ## Request URL `https://{server-hostname}:8383/intelligence/api/score/{scoreProfileId}/latestExperience` ## Scope `DEX.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory - `application/getLatestExperience.v1+json` ### Path Parameters - **scoreProfileId** `string` — Mandatory - Score Profile Id obtained from DEX - Get Metadata API `/intelligence/api/comon/meta` ## Sample Request ```curl 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` - **score** `integer` - Overall experience score - **health** `integer` - Health status for overall experience (0=poor, 1=average, 2=good, 3=unknown) - **isCustomCategoriesExists** `boolean` - Indicates if custom score categories exist - **category** `JSON Array` - Array of category scores - **baseLineScore** `integer` - Baseline score for comparison - **changeFromPreviousDay** `integer` - Change in score from the previous day ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "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 } ``` ## Rate Limit ![](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.