# Checks whether deployments exist for a given object version and type Used to get deployment applicable status. ## Endpoint `GET /intelligence/api/deployments/v2/isDeploymentsAvailable` ## Request ### Request URL `https://`[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/intelligence/api/deployments/v2/isDeploymentsAvailable` ### Scope `DesktopCentralCloud.DEX.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/deploymentsAvailable.v2+json` #### Query Parameters - **objectID** (`string`, Optional) - **objectVersionID** (`string`, Optional): Version ID of the object to check deployments for - **objectType** (`string`, Optional): Type of the object (e.g., 1 = Workflow) ### Sample Request ```curl curl --request GET \ --url https://appdomains/intelligence/api/deployments/v2/isDeploymentsAvailable \ --header 'Accept: application/deploymentsAvailable.v2+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `JSON Object` - **isDeploymentsAvailable** (`boolean`): False when no deployment exists for the given object - **message** (`string`): Message explaining that no deployment has been created for the workflow ### Sample Response: HTTP 200 ```json { "isDeploymentsAvailable": false, "message": "No deployment has been created for this workflow." } ``` ### Possible Response Codes - **200** (`HTTP code`): When no deployments exist ## API Rate Limits ![](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.