# 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://{serverurl}/intelligence/api/score/{scoreProfileId}/latestExperience` ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory `application/getLatestExperience.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). ### Query Parameters - **branchOffice** `long` — Optional Optional. Filter by remote office identifier. Fetch from [Get All Remote Offices](https://www.manageengine.com/products/desktop-central/help/api/cloud/remote-offices-getremoteoffices.html). - **cgFilter** `long` — Optional Optional. Filter by custom group identifier. Fetch from [Retrieve All Custom Groups](https://www.manageengine.com/products/desktop-central/help/api/cloud/custom-groups-get-cglist.html). - **resourceId** `string` — Optional Optional. Filter by device resource identifier. Fetch from [Get Computers Details](https://www.manageengine.com/products/desktop-central/help/api/cloud/computers-getcomputers.html). ## Sample Request ```curl curl --request GET \ --url https://appdomains/intelligence/api/score/{scoreProfileId}/latestExperience \ --header 'Accept: application/getLatestExperience.v1+json' \ --header 'Authorization: Zoho-oauthtoken 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.