Retrieve Patch Database Update Status Deprecating soon

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Retrieves the current status of the ongoing or most recent patch database update.

This API endpoint is deprecating soon

Request URL

https://{server-hostname}:8383/api/1.4/patch/dbupdatestatus

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/api/1.4/patch/dbupdatestatus \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
message_typestring

Value: dbupdatestatus

message_responseJSON Object

Database update status data

Show Sub-Attributes
dbupdatestatusJSON Object

DB update status details

Show Sub-Attributes
last_db_update_statusstring

Status of last DB update: Success or Failed

next_db_update_scheduled_timelong

Timestamp of next scheduled DB update

is_auto_db_update_disabledboolean

Whether automatic DB updates are disabled

last_db_update_timelong

Timestamp of last DB update

message_versionstring

API version: 1.4

statusstring

Operation status: success

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Current patch database update status

Copied!
  {
    "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"
  }
                
Show full

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.