Retrieves all Activities performed on Endpoints.

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 comprehensive list of all activities performed on endpoints, including actions taken by Leak Prevention, boundary types involved, and sensitivity classifications. It supports filters for action type and includes pagination for managing result sets.

Request URL

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

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.

actionFilterstringOptional

filter endpoint activity report records based on Leak Prevention action performed. 0 - Allowed 1 - Blocked 2 - Self Override 3 - Reported False Positive

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/api/1.4/reports/dlp/endpointactivityreport \
  --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
resfileaudit.userstring

User performing action

file_pathstring

File path involved in activity

resfileaudit.event_typeinteger

0-Allowed,
1-Blocked,
2-Self Override,
3-Reported False Positive

resfileaudit.boundary_valuestring

Boundary application/domain involved (e.g., powershell.exe)

override_commentstring

User override comment

resfileaudit.event_timelong

Timestamp of event

classification_rulestring

Matched classification rule

classification_categorystring

Category of classification (e.g., Custom rules)

classification_typeinteger

64-Password protected files,
128-Trusted application,
256-Trusted email domain,
1024-Trusted web domain

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": [
        {
          "resfileaudit.user": "John",
          "classification_source": "--",
          "file_path": "C:\\USERS\\John\\DOCUMENTS\\POWERSHELL_TRANSCRIPT.John.VTIVDCST.20250824165748.TXT",
          "resfileaudit.event_type": 1,
          "resfileaudit.boundary_value": "powershell.exe",
          "override_comment": "--",
          "resfileaudit.event_time": 1756113369790,
          "classification_category": "Custom rules",
          "resfileaudit.boundary_type": 64,
          "classification_type": 16,
          "justication_value": "--",
          "resource_name": "John",
          "classification_rule": "r1"
        }
      ],
      "page": 1
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full