CancelDashboardDevice

CancelDashboardDevice is used to delete a device from OpenText Core Endpoint Backup. All of the protected data will be deleted from the vault. You will not be able to restore any data. The device will not longer be protected. You might use this feature when you want to remove the data from the vault or no longer need the backup. It allows you to stop using the license. This action is not reversible. Once the device is deleted, the data that was backed up cannot be accessed. The equivalent option in the dashboard is the Delete device button on the Manage device tab for a device.

See CancelDashboardDevice for an example PowerShell script.

Signature

Copy
ServiceResponse CancelDashboardDevice (CallingContext callingContext, CancelDashboardDeviceInput input, out CancelDashboardDeviceResult result);

Data structure

The input to CancelDashboardDevice is a deviceId.

Copy
[DataContract]
public class CancelDashboardDeviceInput
{
    public CancelFromDashboardDeviceInput()
    {
    }

    [DataMember]
    public Guid DeviceId;
}

Result

The result is the BaseServiceResult described in General API structure.

Copy
[DataContract]
public class CancelDashboardDeviceResult : BaseServiceResult
{
    public CancelDashboardDeviceResult()
    {
    }
}