DeleteDataFromDashboardDevice
DeleteDataFromDashboardDevice is used to delete all of the protected data from the device. Unprotected data on the device will not be deleted. The protected data will not be deleted from the vault, only from the device. You might use this feature if a laptop is lost or stolen, and there is concern that someone malicious will access the laptop and the files on it. This option also resets the license so you can reuse it again later, on the same or a different device. The equivalent option in the dashboard is the Delete data from device button on the Manage device tab for a device. (After deleting data from a device, you will have to generate a new license by using Reset device on the Manage device tab for the device.)
See DeleteDataFromDashboardDevice for an example PowerShell script.
Signature
ServiceResponse DeleteDataFromDashboardDevice (CallingContext callingContext, DeleteDataFromDashboardDeviceInput input, out DeleteDataFromDashboardDeviceResult result);
Data structure
The input to DeleteDataFromDashboardDevice is a deviceId.
[DataContract]
public class DeleteDataFromDashboardDeviceInput
{
public DeleteDataFromDashboardDeviceInput()
{
}
[DataMember]
public Guid DeviceId;
}
Result
The result is the BaseServiceResult described in General API structure.
[DataContract]
public class DeleteDataFromDashboardDeviceResult : BaseServiceResult
{
public DeleteDataFromDashboardDeviceResult()
{
}
}