# Retrieves the export settings configured for System Manager tools Returns the current export settings for System Manager tools, including registry export paths and mail export configuration. ## Endpoints **GET** `/dcapi/tools/systemManager/exportSettings` ## Request ### Request URL ```text https://{server-hostname}:8383/dcapi/tools/systemManager/exportSettings ``` ### Scope ```text Tools.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Request Parameters #### Request Headers - **Accept** `string` — **Mandatory** - `application/json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/tools/systemManager/exportSettings \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` `JSON Object` - **actionType** `string` - Current action type for export - **historyMaxDays** `integer` - Maximum days to retain export history - **historyMaxSize** `integer` - Maximum file size in MB for export history - **isMaxDaysEnabled** `boolean` - Whether day-based retention limit is enabled - **isMaxSizeEnabled** `boolean` - Whether size-based retention limit is enabled - **isMailNotifyEnabled** `boolean` - Whether email notification on export is enabled ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 ```json { "isMaxDaysEnabled": true, "isMaxSizeEnabled": false, "actionType": "export", "historyMaxDays": 90, "isMailNotifyEnabled": true, "historyMaxSize": 500 } ``` ## 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.