# Fetch the status of CIS detailed report generation Returns the current status of CIS detailed report generation for the authenticated user, including whether an export is currently in progress. ## Endpoint `GET /dcapi/scap/compliance/export/cisReportExportStatus` ## Request ### Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/scap/compliance/export/cisReportExportStatus ### Scope `DesktopCentralCloud.VulnerabilityMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/scap/compliance/export/cisReportExportStatus \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` **JSON Object** | Attribute | Type | Description | |---|---|---| | reportStatus | string | Current status of report generation | | reportId | long | Generation ID of the report | | reportName | string | Name of the report | | generatedTime | string | Timestamp when the report was generated | | isExportInProgress | boolean | Whether an export is currently in progress | ### HTTP Code 401 Response Body — `application/json` **JSON Object** | Attribute | Type | Description | |---|---|---| | errorCode | long | Unauthorized error code: credentials missing, expired, or invalid | | errorMsg | string | Authentication failure reason | ### HTTP Code 429 Response Body — `application/json` **JSON Object** | Attribute | Type | Description | |---|---|---| | errorCode | long | Rate limit error code returned when the API call reached threshold | | errorMsg | string | Rate limit exceeded message with retry guidance | ## Possible Response Codes - `200` — HTTP code - `401` — HTTP code - `429` — HTTP code ## Sample Responses ### HTTP 200 #### Report generation has completed ```json { "generatedTime": "2026-03-25 14:30:00", "reportId": 12345, "reportName": "CIS_Report_2026_03_25", "reportStatus": "completed", "isExportInProgress": false } ``` #### Report generation is still in progress ```json { "generatedTime": "", "reportId": 0, "reportName": "", "reportStatus": "in_progress", "isExportInProgress": true } ``` ### HTTP 401 #### Compliance report is not available for this edition ```json { "errorMessage": "Authentication required", "errorCode": "UAC_UNAUTHORIZED" } ``` ### HTTP 429 #### API call threshold exceeded ```json { "errorMessage": "Rate limit exceeded. Retry after some time", "errorCode": "TOO_MANY_REQUESTS" } ``` ## Rate Limiting ![](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.