# Returns the header-level overview for a deployment's detail page, including actions and tabs Used to get deployment overview data for the deployment id. ## Endpoints `GET /intelligence/api/deployments/details/{deploymentId}/overview` ## Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/intelligence/api/deployments/details/{deploymentId}/overview ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory - `application/deploymentDetailsOverview.v1+json` ### Path Parameters - **deploymentId** `string` — Mandatory ## Sample Request ```curl curl --request GET \ --url https://appdomains/intelligence/api/deployments/details/{deploymentId}/overview \ --header 'Accept: application/deploymentDetailsOverview.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: application/json - `JSON Object` - **deploymentData** `JSON Object` - Deployment header details - **targetData** `JSON Object` - Target groups for the deployment - **actions** `array` - Allowed actions for the current user (e.g., suspend, trash) - **tabs** `JSON Array` - Detail-page tabs to render ### Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "targetData": { "included": [ { "groupName": "All Windows Devices", "cgResourceId": "10" } ] }, "tabs": [ { "route": "details.index", "displayName": "Summary", "name": "deployment-summary" }, { "route": "details.deployment-status", "displayName": "Deployment Status", "name": "deployment-status" } ], "deploymentData": { "details": { "createdBy": "admin", "name": "Onboarding Deployment", "createdTime": "Apr 01, 2025 10:30 AM" } }, "actions": [ "suspend", "trash" ] } ``` ## 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.