# Retrieve Patch Database Update Status Retrieves the current status of the ongoing or most recent patch database update. **This API endpoint is deprecating soon** ## Endpoint `GET /api/1.4/patch/dbupdatestatus` ## Request ### Request URL ```text https://{server-hostname}:8383/api/1.4/patch/dbupdatestatus ``` ### Scope ```text PatchMgmt.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/patch/dbupdatestatus \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - **JSON Object** - **message_type** `string` - Value: `dbupdatestatus` - **message_response** `JSON Object` - Database update status data - **message_version** `string` - API version: `1.4` - **status** `string` - Operation status: `success` ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 Current patch database update status ```json { "message_type": "dbupdatestatus", "message_response": { "dbupdatestatus": { "last_db_update_status": "Success", "next_db_update_scheduled_time": 1757397540000, "is_auto_db_update_disabled": false, "last_db_update_time": 1757311200000 } }, "message_version": "1.4", "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.