Initiate Database Sync

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

Initiates a manual vulnerability database synchronization to ensure the latest patch information is available. Returns an error if a synchronization is already in progress.

Endpoints

Request URL

https://{serverurl}/dcapi/patch/sync/updateDB

Scope

DesktopCentralCloud.PatchMgmt.CREATECopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request POST \
  --url https://appdomains/dcapi/patch/sync/updateDB \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

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

Whether a database update was already in progress when the request was made

statusstring

Operation result: success

- HTTP code 409

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

Always true when DB update is already running

statusstring

Operation result: error

Possible Response Codes

200HTTP code
409HTTP code

Sample Response: HTTP 200

Database sync successfully initiated

Copied!
  {
    "dbupdate_inprogress": false,
    "status": "success"
  }
                
Show full

Sample Response: HTTP 409

Database sync already running

Copied!
  {
    "dbupdate_inprogress": true,
    "status": "error"
  }
                
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.