Products: Managed Backup (Agent)
Article ID: m0703Last Modified: 20-Mar-2025

GET API/Computers/{offset}/{count}

Retrieves a list of managed computers (endpoints) by provided parameters.

Example

Method to retrieve list of the first ten computers:

GET /mbsapi/api/Computers/0/10

Request Information

URI Parameters

Name Description Type Additional Information
offset The offset parameter defines the number of computers (endpoints) to skip before beginning the retrieval of data. int Required, O stands for the first object
count Number of computers (endpoints) to retrieve int Required

Response Information

Resource Description

Returns computers list. This method returns ComputerHid values for computers that can be used as hid parameter for other computer-related API methods.

Name Description Type Additional Information
Count Number of computers int -
Computers List of computers -

Response Formats

application/json

{
  "Count": 2,
  "Message": "Success",
  "StatusCode": 200,
  "Computers": [
    {
      "ComputerHID": "01d469cb-326e-444f-a9b0-816fccf7c956",
      "OSTypeString": "windows",
      "BuildTypeString": 536870940,
      "RemoteManagementAvailable": true,
      "ComputerName": "DESKTOP-HFSOH70",
      "ComputerDisplayName": "aaaa",
      "CompanyName": "c1",
      "UserEmail": "user",
      "ProfileName": "",
      "UserID": "10ce439b-7bec-4208-a116-4e0236085f87",
      "BackupBuildVersion": {
        "_Major": 8,
        "_Minor": 0,
        "_Build": 3,
        "_Revision": 36
      },
      "License": {
        "Granted": true,
        "IsTrial": false,
        "DisplayExpiresDate": "2026-02-20T00:00:00"
      },
      "BackupStats": {
        "PlansCount": 4,
        "TotalOverdueCount": 0,
        "TotalFailedCount": 0,
        "TotalSuccessCount": 0,
        "TotalWarningCount": 0,
        "TotalNotRunCount": 4,
          "TotalRunningCount": 0,
        "TotalInterruptedCount": 0
      },
      "LastActivity": "2025-03-19T10:26:47.703",
      "InstanceType": 3,
      "HasBackupApp": true,
      "LostAuth": false,
      "LostAuthChangeDate": "2025-03-17T13:21:45.193",
      "Apps": [
        {
          "ApplicationId": "backup",
          "Version": "8.0.3.36",
          "VersionStatus": "Outdated",
          "BuildTypeLong": 536870940,
          "ApplicationState": "Enabled",
          "Online": true,
          "ErrorCode": null,
          "ErrorMessage": null
        },
        {
          "ApplicationId": "ra",
          "Version": "3.8.0.9",
          "VersionStatus": "Latest",
          "BuildTypeLong": 536870951,
          "ApplicationState": "Enabled",
          "Online": false,
          "ErrorCode": null,
          "ErrorMessage": null
        }
      ],
      "DiagnosticEvents": [],
      "DiskInfoUsagePercent": 0,
      "MemoryInfoUsagePercent": 0,
      "CPUInfoUsagePercent": 0,
      "ProfileDisplayName": "",
      "BackupStatus": 0
},
    {
      "ComputerHID": "13a95b54-bf34-4f38-9d27-a461ec37d565",
      "OSTypeString": "windows",
      "BuildTypeString": 536870970,
      "RemoteManagementAvailable": false,
      "ComputerName": "WIN-0O0BAL8I72U",
      "ComputerDisplayName": "bbbb",
      "CompanyName": "c1",
      "UserEmail": "user",
      "ProfileName": "",
      "UserID": "10ce439b-7bec-4208-a116-4e0236085f87",
      "BackupBuildVersion": {
        "_Major": 8,
        "_Minor": 1,
        "_Build": 0,
        "_Revision": 436
      },
      "License": {
        "Granted": true,
        "IsTrial": true,
        "DisplayExpiresDate": "2025-03-11T00:00:00"
      },
      "BackupStats": {
        "PlansCount": 0,
        "TotalOverdueCount": 0,
        "TotalFailedCount": 0,
        "TotalSuccessCount": 0,
        "TotalWarningCount": 0,
        "TotalNotRunCount": 0,
        "TotalRunningCount": 0,
        "TotalInterruptedCount": 0
      },
      "LastActivity": "2025-03-11T08:47:32.87",
      "InstanceType": 3,
      "HasBackupApp": true,
      "LostAuth": true,
      "LostAuthChangeDate": "2025-03-17T13:19:59.073",
      "Apps": [
        {
          "ApplicationId": "backup",
          "Version": "8.1.0.436",
          "VersionStatus": "Latest",
          "BuildTypeLong": 536870970,
          "ApplicationState": "Enabled",
          "Online": false,
          "ErrorCode": null,
          "ErrorMessage": null
        }
      ],
      "DiagnosticEvents": [],
      "DiskInfoUsagePercent": 0,
      "MemoryInfoUsagePercent": 0,
      "CPUInfoUsagePercent": 0,
      "ProfileDisplayName": "",
      "BackupStatus": 0
    }
  ]
}
https://git.cloudberrylab.com/egor.m/doc-help-mbs.git
Production