# List Patch Deployment Retrieves a list of all patch deployment policies configured in Endpoint Central. **This API endpoint is deprecating soon** ## Endpoint [GET /api/1.4/patch/deploymentpolicies](https://www.manageengine.com/products/desktop-central/help/api/cloud/patch-legacy-get-deployment-policies.html) ## Request ### Request URL `https://{serverurl}/api/1.4/patch/deploymentpolicies` `{serverurl}`: [OAuth Authentication Endpoint Domain](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html) ### Scope `DesktopCentralCloud.PatchMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Query Parameters - **searchvalue** `string` *(Optional)* - **searchcolumn** `string` *(Optional)* - **searchtype** `string` *(Optional)* - **sortorder** `string` *(Optional)* - **orderby** `string` *(Optional)* - **pagelimit** `string` *(Optional)*: Number of records per page. - **page** `integer` *(Optional)*: Current page number for pagination. - **customerid** `long` *(Optional)* - **policyname** `string` *(Optional)* - **platform** `string` *(Optional)* ### Sample Request ```curl curl --request GET \ --url https://appdomains/api/1.4/patch/deploymentpolicies \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP Code 200 Response body: `application/json` - `JSON Object` - **message_type** `string`: Value: deploymentpolicies - **message_response** `JSON Object`: Paginated deployment policies data - **message_version** `string`: API version: 1.0 - **status** `string`: Operation status: success - **response_code** `string`: Response code: 200 ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 Paginated list of deployment policies ```json { "response_code": 200, "message_type": "deploymentpolicies", "message_response": { "total": 44, "deploymentpolicies": [ { "creation_time": 1552544237529, "template_name": "My Policy 939", "is_template_alive": true, "modified_time": 1552544237529, "set_as_default": false, "user_id": 1, "template_id": 8103, "customer_id": 1, "first_name": "admin" } ], "limit": 25, "page": 1 }, "message_version": "1.0", "status": "success" } ``` ## 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.