# 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. ## Endpoint `GET /dcapi/som/computers/importStatus` ## Request URL `https://{server-hostname}:8383/dcapi/som/computers/importStatus` ## Scope `SOM.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** `application/importComputersStatus.v1+json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/som/computers/importStatus \ --header 'Accept: application/importComputersStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## 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 } ``` ![ ](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.