# 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 https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/swDeployment/getAutoUpdateEnabledSWList ### Scope `DesktopCentralCloud.SWDeployment.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory: `application/getAutoUpdateEnabledSWList.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/swDeployment/getAutoUpdateEnabledSWList \ --header 'Accept: application/getAutoUpdateEnabledSWList.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 Response Body — `application/json` - `JSON Object` - **softwareIds** `JSON Array` — Array of software entries with auto-update enabled ### 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 ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## Sample Responses ### HTTP 200 Software with auto-update enabled ```json { "softwareIds": [ { "softwareId": 2001, "policyId": 1 }, { "softwareId": 2003, "policyId": 2 } ] } ``` ### HTTP 500 Server error ```json { "errorMessage": "Internal Server Error", "errorCode": "INTERNAL_ERROR" } ``` ## Rate Limits ![](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.