# Returns supported device types for a platform Returns the list of supported device types for a given platform including bus type details. ## Endpoint `GET /dcapi/device/supportedDevices` ## Request URL `https://{serverurl}/dcapi/device/supportedDevices` [`{serverurl}`](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html) ## Scope `DesktopCentralCloud.DeviceControl.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Content-Type** `string` — Mandatory - `application/json` ### Query Parameters - **platformId** `integer` — Optional - Target platform. 1 = Windows, 2 = Mac. Defaults to 0 (all platforms) when not specified ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/device/supportedDevices \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **supportedDevices** `JSON Array` - List of supported device types ### 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 devices response ```json { "supportedDevices": [ { "deviceCount": "100", "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 Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.