# Retrieves all configured browsers Retrieves all configured browser details for the customer. ## Endpoint **GET** `/endpointdlp/api/corpboundary/browsers` ## Request URL `https://{server-hostname}:8383/endpointdlp/api/corpboundary/browsers` ## Scope `EndpointDLP.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — **Mandatory** - `application/browsers.v1+json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/endpointdlp/api/corpboundary/browsers \ --header 'Accept: application/browsers.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — `application/json` `JSON object` - **browsers** `JSON array` - List of configured browsers ### HTTP Code 500 #### Response Body — `application/json` `JSON object` - **errorCode** `string` - Internal error code (INTERNAL_ERROR / INTERNAL_SERVER_ERROR) returned when retrieval of corporate boundary data (web domains, printers, email domains, browsers) fails - **errorMessage** `string` - Detailed message describing why the corporate boundary fetch failed ## Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## Sample Response: HTTP 200 Successful retrieval of browsers ```json { "browsers": [ { "browserID": "1", "productVendorID": "311", "browserName": "Microsoft Edge", "vendorName": "Microsoft Corporation" }, { "browserID": "2", "productVendorID": "312", "browserName": "Google Chrome", "vendorName": "Google LLC" } ] } ``` ## Sample Response: HTTP 500 Internal server error ```json { "errorMessage": "Exception Occurred While Retrieving Browser Details", "errorCode": "INTERNAL_SERVER_ERROR" } ``` **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.