# Returns audit device data Returns audit device data for the requested report view. ## Endpoint **GET** `/dcapi/device/supportedauditdevices` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/device/supportedauditdevices` ### Scope `DeviceControl.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Content-Type** `string` — **Mandatory**: `application/json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/device/supportedauditdevices \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — `application/json` `JSON object` - **supportedauditdevices** `JSON array`: List of supported audit device types with counts ### HTTP Code 500 #### Response Body — `application/json` `JSON object` - **errorCode** `string`: Error code identifying the type of error - **errorMsg** `string`: Human-readable error message ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## Sample Response: HTTP 200 Supported audit devices response ```json { "supportedauditdevices": [ { "deviceCount": "50", "supportedDeviceID": "1", "busTypes": [ { "devToBusID": "1", "allowed": true, "supportedDeviceID": "1", "busTypeName": "USB" } ], "priority": 1, "deviceID": "10", "deviceName": "Removable Storage", "statusCode": 1 } ] } ``` ## Sample Response: HTTP 500 Internal server error ```json { "errorCode": "INTERNAL_ERROR", "errorMsg": "Internal Server Error!" } ``` ## API Rate Limit **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.