# Fetches the list of software for which auto-update is enabled Retrieves all software entries that currently have auto-update enabled, along with their associated policy IDs. ## Endpoints GET `/dcapi/swDeployment/getAutoUpdateEnabledSWList` ## Request ### Request URL ```text https://{server-hostname}:8383/dcapi/swDeployment/getAutoUpdateEnabledSWList ``` ### Scope ```text SWDeployment.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/getAutoUpdateEnabledSWList.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/swDeployment/getAutoUpdateEnabledSWList \ --header 'Accept: application/getAutoUpdateEnabledSWList.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP Code 200 #### Response Body `application/json` - `JSON Object` - **softwareIds** (`JSON Array`): Array of software entries with auto-update enabled #### Sample Response Software with auto-update enabled ```json { "softwareIds": [ { "softwareId": 2001, "policyId": 1 }, { "softwareId": 2003, "policyId": 2 } ] } ``` ### HTTP Code 500 #### Response Body `application/json` - `JSON Object` - **errorCode** (`string`): INTERNAL_ERROR for general failures, SW_INTERNAL_ERROR for software deployment internal errors - **errorMessage** (`string`): Internal server error with details about the template/auto-update operation failure #### Sample Response Server error ```json { "errorMessage": "Internal Server Error", "errorCode": "INTERNAL_ERROR" } ``` ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## 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.