Checks whether deployments exist for a given object version and type

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

Used to get deployment applicable status

Request URL

https://{serverurl}/intelligence/api/deployments/v2/isDeploymentsAvailable

Scope

DesktopCentralCloud.DEX.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/deploymentsAvailable.v2+jsonapplication/deploymentsAvailable.v2+jsonCopied!

- Query Parameters

objectIDstringOptional
objectVersionIDstringOptional

Version ID of the object to check deployments for

objectTypestringOptional

Type of the object (e.g., 1 = Workflow)

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/intelligence/api/deployments/v2/isDeploymentsAvailable \
  --header 'Accept: application/deploymentsAvailable.v2+json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

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

False when no deployment exists for the given object

messagestring

Message explaining that no deployment has been created for the workflow

Possible Response Codes

200HTTP code

When no deployments exist

Sample Response: HTTP 200

Copied!
  {
    "isDeploymentsAvailable": false,
    "message": "No deployment has been created for this workflow."
  }
                
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.