# Retrieves DEX module configuration Returns configuration and feature status flags for the DEX module. ## Endpoints `GET /intelligence/api/common/meta` ## Request URL `https://{server-hostname}:8383/intelligence/api/common/meta` ## Scope `DEX.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` *(Mandatory)*: `application/intelligenceMeta.v1+json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/intelligence/api/common/meta \ --header 'Accept: application/intelligenceMeta.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: `application/json` - `JSON Object` - **rulesetId** `string`: Id of the insight ruleset - **lastVisitedTarget** `JSON Object`: Last visited target information - **extensionStatus** `boolean`: Status indicating if extensions are enabled - **ziaChatBotStatus** `boolean`: Status indicating if Zia chatbot is enabled - **lastVisitedProfileId** `string`: Id of the last visited score profile - **timelineEnabled** `boolean`: Status indicating if timeline feature is enabled - **showOverviewIntro** `boolean`: Flag to show or hide the overview intro - **initialDataPrepared** `boolean`: Status indicating if initial data has been prepared - **isDeploymentEnabled** `boolean`: Status indicating if deployment is enabled - **isEIAgentInstalled** `boolean`: Status indicating if DEX agent is installed - **isSentimentScoreEnabled** `boolean`: Status indicating if sentiment scoring is enabled ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "rulesetId": "1", "lastVisitedTarget": { "customGroupId": "1" }, "extensionStatus": true, "ziaChatBotStatus": true, "lastVisitedProfileId": "1", "timelineEnabled": false, "showOverviewIntro": false, "initialDataPrepared": true, "isDeploymentEnabled": true, "isEIAgentInstalled": true, "isSentimentScoreEnabled": true } ``` ## Rate Limit **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.