# Fetch System Health Policy Retrieves the currently configured system health policy in Endpoint Central. **This API endpoint is deprecating soon** ## Endpoint `GET /api/1.4/patch/healthpolicy` ## Request ### Request URL `https://{server-hostname}:8383/api/1.4/patch/healthpolicy` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```bash curl --request GET \ --url https://appdomain/api/1.4/patch/healthpolicy \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - JSON Object - **message_type** (`string`): Value: healthpolicy - **message_response** (`JSON Object`): System health policy 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 Current system health policy with vulnerability thresholds ```json { "response_code": 200, "message_type": "healthpolicy", "message_response": { "healthpolicy": { "vulnerable": { "important": 49, "critical": 0, "low": 99, "moderate": 74 }, "highly_vulnerable": { "important": 50, "critical": 1, "low": 100, "moderate": 75 }, "advanced_settings": { "exclude_tp_apps": false, "consider_only_approved": false } } }, "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.