# 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. ## Endpoint `GET /dcapi/som/ip-scopes/importStatus` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/som/ip-scopes/importStatus` ### Scope `SOM.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — **Mandatory** - `application/importIPScopesStatus.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/som/ip-scopes/importStatus \ --header 'Accept: application/importIPScopesStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP code 200 Response Body — `application/json` - `JSON Object` - **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 } ``` ## 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.