# Approve Specified Patches Initiates the patch approval process for the specified patches across all computers managed by the Endpoint Central server. **This API endpoint is deprecating soon** ## Endpoint `POST /api/1.4/patch/approvepatch` ## Request ### Request URL `https://`[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/api/1.4/patch/approvepatch` ### Scope `DesktopCentralCloud.PatchMgmt.CREATE` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Query Parameters - **customerid** `long` — Optional #### Request Body `application/json` - `JSON Object` - **patchids** `array` — Mandatory - Array of patch IDs to approve. Max 1000 entries. ### Sample Request ```curl curl --request POST \ --url https://appdomains/api/1.4/patch/approvepatch \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'content-type: application/json' \ --data '{"patchids":[112,113,114]}' ``` ### Sample Request Body Approve patches by IDs ```json { "patchids": [ 112, 113, 114 ] } ``` ## Response ### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **message_type** `string` - Action identifier: approvepatch - **message_response** `JSON Object` - Approval result payload - **message_version** `string` - API version: 1.4 - **status** `string` - Overall operation status: success ### Sample Response: HTTP 200 Approval initiated successfully ```json { "message_type": "approvepatch", "message_response": { "approvepatch": { "status": "Initiated Successfully" } }, "message_version": "1.4", "status": "success" } ``` ### HTTP Code 400 Response Body — `application/json` - `JSON Object` - **error_code** `string` - Error code: APPROVE_FAILED_CODE for approval failures - **error** `string` - Error type: APPROVE_FAILED - **error_description** `string` - Detailed failure reason: insufficient permissions, invalid patch list, or empty patches ### Sample Response: HTTP 400 #### User lacks All Managed Computer role ```json { "error_description": "Verify if the user is granted permissions to manage all computers!", "error_code": "APPROVE_FAILED_CODE", "error": "APPROVE_FAILED" } ``` #### Provided patch IDs cannot be parsed ```json { "error_description": "Verify if the patches list is valid!", "error_code": "APPROVE_FAILED_CODE", "error": "APPROVE_FAILED" } ``` #### No patch IDs provided ```json { "error_description": "No Patches Specified", "error_code": "APPROVE_FAILED_CODE", "error": "APPROVE_FAILED" } ``` ### Possible Response Codes - **200** — HTTP code - **400** — HTTP code ## Rate Limit **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.