Retrieves False Positives reported by Endpoints in the Enterprise Perimeter.

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 false positives raised by endpoints across the enterprise perimeter. It supports filters for boundary type and includes pagination for easy result navigation. The response also indicates the number of endpoints that raised false positives.

Request URL

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

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.

boundarytypestringOptional

filter false positive report records based on boundary type. 1 - Storage devices 5 - Network printers 6 - USB printers 8 - Web domains 16 - Email domains

Sample Request

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

Boundary value (printer, domain, etc.)

resourcecountinteger

Number of endpoints from which the false positives are raised.

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": [
        {
          "boundary_value": "Canon E470 series (Copy 1)",
          "resourcecount": 1
        }
      ],
      "page": 1
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full