Retrieves Business Justifications used by 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 lists all business justification messages provided by endpoints for specific actions. It supports filters for justification messages and includes pagination. The response also includes boundary and event type details.

Request URL

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

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.

justificationmsgstringOptional

filter business justification report records based on Justification message

Sample Request

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

2 - Self Override

override_commentstring

User’s override comment

boundary_valuestring

Boundary application/domain triggered

justication_valuestring

User’s justification text

resfileaudit.boundary_typeinteger

1-Storage devices,
5-Network printers,
6-USB printers,
8-Web domains,
16-Email domains

event_timelong

Timestamp of event

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": [
        {
          "event_type": 2,
          "override_comment": "--",
          "boundary_value": "filebin.net",
          "justication_value": "Personal Documents",
          "boundary_type": 8,
          "event_time": 1755847388962
        }
      ],
      "page": 1
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full