Retrieves all Deployed Rules with Custom Group Association Count.

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

This API provides a list of all rules deployed in the network, along with the number of custom groups associated with each rule. It supports filters for rule class and includes pagination for efficient data retrieval.

Request URL

https://{serverurl}/api/1.4/reports/dlp/networkrulesreport

Scope

DesktopCentralCloud.EndpointDLP.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!
Content-TypestringMandatory
application/jsonapplication/jsonCopied!

- Query Parameters

pagestringOptional

This is for navigating to specific pages. This field denotes the current page.

pagelimitstringOptional

specify the number of records to be displayed per page.

ruleClassstringOptional

filter endpoint activity report records based on data class. Finance PII Health Source code Custom rules

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/api/1.4/reports/dlp/networkrulesreport \
  --header 'Accept: application/json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52' \
  --header 'Content-Type: application/json'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
message_typeinteger

Module Code

message_responseJSON Object

Response.

Show Sub-Attributes
totalinteger

Total Number of Records.

limitinteger

Maximum number of records included in this single response.

dlpJSON Array

DLP.

Show Sub-Attributes
JSON Object
Show Sub-Attributes
cgcountinteger

Number of custom groups to which the rule is associated.

datarule_namestring

DLP rule triggered

pageinteger

Page Number.

message_versioninteger

Api Version.

statusinteger

Status of Api call.

response_codeinteger

Response code.

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "response_code": 200,
    "message_type": "dlp",
    "message_response": {
      "total": 1,
      "limit": 25,
      "dlp": [
        {
          "cgcount": 1,
          "datarule_name": "Batchfile"
        }
      ],
      "page": 1
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full