# Retrieve List of Approved Patches Retrieves a list of all approved patches with approval timestamps and approver details. ## Endpoints GET `/dcapi/patch/settings/approvedPatches` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/settings/approvedPatches ## Scope `DesktopCentralCloud.PatchMgmt.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters - **pageNo** (`integer`, Optional): Page number for pagination - **limit** (`integer`, Optional): Maximum number of records per page ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/settings/approvedPatches \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json `JSON Object` - **approvedPatches** (`JSON Array`): Array of approved patch objects - **total** (`string`): Total number of approved patches - **page** (`string`): Current page number - **limit** (`string`): Number of records per page ## Possible Response Codes - **200** (`HTTP code`) ## Sample Response: HTTP 200 Paginated approved patches list ```json { "total": 100, "approvedPatches": [ { "patchName": "KB1234567", "patchId": 12345, "approvedTime": 1553058600000, "approvedBy": "admin" } ], "limit": 25, "page": 1 } ``` ![](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.