# Retrieves Device Status Details for all Windows Computers in the Network. This API fetches the status of devices connected to each Windows computer within your network. It supports pagination and returns status indicators for every connected device. ## Endpoints `GET /api/1.4/reports/dcm/computerdevstatus` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/api/1.4/reports/dcm/computerdevstatus ## Scope `DesktopCentralCloud.DeviceControl.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters - **page** `integer` *(Optional)*: Current page number for pagination - **pagelimit** `integer` *(Optional)*: Number of records per page ## Sample Request ```curl curl --request GET \ --url https://appdomains/api/1.4/reports/dcm/computerdevstatus \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json `JSON Object` - **message_type** `string`: Module code identifier - **message_response** `JSON Object`: Response data container - **message_version** `string`: API version - **status** `string`: Status of API call (success/failure) - **response_code** `integer`: HTTP response code ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 Computer device status report response ```json { "response_code": 200, "message_type": "dcm", "message_response": { "total": 1, "limit": 25, "page": 1, "dcm": [ { "biometric.status_id": 4, "wirelessnetworkadapters.status_id": 4, "smartcardreader.status_id": 4, "wpd.status_id": 4, "bluetooth.status_id": 4, "domain_netbios_name": "WORKGROUP", "modem.status_id": 4, "serialports.status_id": 4, "resource_id_string": "111301", "parallelports.status_id": 4, "infrared.status_id": 4, "printer.status_id": 4, "floppydisk.status_id": 4, "image.status_id": 4, "cdrom.status_id": 4, "managedcomputer.friendly_name": "John", "os_platform": 1, "agent_logged_on_users": "John", "diskdrive.status_id": 0, "mouse.status_id": 4, "resource_id": 111301, "tapedrive.status_id": 4, "resource_name": "John", "appledevices.status_id": 4, "keyboard.status_id": 4 } ] }, "message_version": "1.4", "status": "success" } ```