# List Patch Deployment **Deprecating soon** 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` ## Request ### Request URL ```text https://{server-hostname}:8383/api/1.4/patch/deploymentpolicies ``` ### Scope ```text PatchMgmt.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/patch/deploymentpolicies \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### 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 **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.