# Retrieves all corporate web domains Retrieves all configured corporate web domains for the customer. ## Endpoint **GET** `/endpointdlp/api/corpboundary/webdomains` ## Request ### Request URL `https://{server-hostname}:8383/endpointdlp/api/corpboundary/webdomains` ### Scope `EndpointDLP.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (string, Mandatory): `application/webDomains.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/endpointdlp/api/corpboundary/webdomains \ --header 'Accept: application/webDomains.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP 200 #### Response Body `application/json` - JSON object - **webdomains** (JSON array): List of corporate web domains #### Sample Response Successful retrieval of web domains ```json { "webdomains": [ { "webDomainID": 1001, "webdomainVal": "filebin.net" }, { "webDomainID": 1002, "webdomainVal": "drive.google.com" } ] } ``` ### HTTP 500 #### Response Body `application/json` - JSON object - **errorCode** (string): Internal error code (INTERNAL_ERROR / INTERNAL_SERVER_ERROR) returned when retrieval of corporate boundary data (web domains, printers, email domains, browsers) fails - **errorMessage** (string): Detailed message describing why the corporate boundary fetch failed #### Sample Response Internal server error ```json { "errorMessage": "Exception Occurred While Retrieving Web Domain Details", "errorCode": "INTERNAL_ERROR" } ``` ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## 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.