# Retrieve computer CSV import progress Retrieves the current status and progress of a computer CSV import operation including success count, failure count, and empty file detection. ## Endpoints GET `/dcapi/som/computers/importStatus` ## Request ### Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/som/computers/importStatus ### Scope `DesktopCentralCloud.SOM.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/importComputersStatus.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/computers/importStatus \ --header 'Accept: application/importComputersStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **csvImportInProgress** (`boolean`): Indicates whether the CSV import is still being processed. Returns false once the import has completed. - **csvImportSummary** (`JSON Object`): Summary of the completed CSV import operation including success and failure counts. Present only after the import finishes. ### Possible Response Codes - **200** (`HTTP code`) ### Sample Response: HTTP 200 #### Import in progress ```json { "csvImportInProgress": true } ``` #### Import completed with results ```json { "csvImportSummary": { "csvImportFailureCount": 3, "csvImportSuccessCount": 45 }, "csvImportInProgress": false } ``` ## Rate Limit ![](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.