# Retrieve IP scope CSV import progress Retrieves the current status of a CSV import operation for IP scopes including success count, failure count, and empty file detection. ## Endpoints `GET /dcapi/som/ip-scopes/importStatus` ## Request URL `https://{serverurl}/dcapi/som/ip-scopes/importStatus` ## Scope `DesktopCentralCloud.SOM.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (string, Mandatory): `application/importIPScopesStatus.v1+json` ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/ip-scopes/importStatus \ --header 'Accept: application/importIPScopesStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` - **csvImportInProgress** (boolean): Indicates whether the IP scope CSV import is still being processed. Returns false once the import has completed. - **csvImportSummary** (JSON Object): Summary of the completed IP scope CSV import 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 ```json { "csvImportSummary": { "csvImportFailureCount": 2, "csvImportSuccessCount": 10 }, "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.