# Retrieves Business Justifications used by Endpoints. 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. ## Endpoint `GET /api/1.4/reports/dlp/justificationreport` ## Request URL `https://{serverurl}/api/1.4/reports/dlp/justificationreport` [`{serverurl}`](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html) ## Scope `DesktopCentralCloud.EndpointDLP.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** - `application/json` - **Content-Type** `string` — **Mandatory** - `application/json` ### Query Parameters - **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. - **justificationmsg** `string` — Optional - filter business justification report records based on Justification message ## Sample Request ```curl 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` - **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 - **200** — HTTP code ## Sample Response: HTTP 200 ```json { "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" } ```