# Retrieves all Deployed Web Domains with Custom Group Association Count This API lists all web domains deployed across the network, along with the number of custom groups associated with each domain. It also supports pagination. ## Endpoints `GET /api/1.4/reports/dlp/networkwebdomainreport` ## Request URL `https://`[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/api/1.4/reports/dlp/networkwebdomainreport` ## Scope `DesktopCentralCloud.EndpointDLP.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Parameter | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | application/json | | Content-Type | string | Mandatory | application/json | ### Query Parameters | Parameter | Type | Required | Description | |---|---|---|---| | page | string | Optional | This is for navigating to specific pages. This field denotes the current page. | | pagelimit | string | Optional | specify the number of records to be displayed per page. | ## Sample Request ```curl curl --request GET \ --url https://appdomains/api/1.4/reports/dlp/networkwebdomainreport \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json | Parameter | Type | Description | |---|---|---| | message_type | integer | Module Code | | message_response | JSON Object | Response. | | message_version | integer | Api Version. | | status | integer | Status of Api call. | | response_code | integer | Response code. | ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ## Sample Response: HTTP 200 ```json { "response_code": 200, "message_type": "dlp", "message_response": { "total": 1, "limit": 25, "dlp": [ { "dlpwebdomains.web_domain_val": "filebin.net", "cgcount": 4 } ], "page": 1 }, "message_version": "1.4", "status": "success" } ```