# Retrieve List of Approved Patches Retrieves a list of all approved patches with approval timestamps and approver details. ## Endpoint `GET /dcapi/patch/settings/approvedPatches` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/patch/settings/approvedPatches` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/settings/approvedPatches \ --header 'Authorization: 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 ### Sample Response: HTTP 200 Paginated approved patches list ```json { "total": 100, "approvedPatches": [ { "patchName": "KB1234567", "patchId": 12345, "approvedTime": 1553058600000, "approvedBy": "admin" } ], "limit": 25, "page": 1 } ``` ### Possible Response Codes - **200** — HTTP code ## API Request 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.