SendActivationEmail
SendActivationEmail is used to send an email to the user who owns the device. The email message contains the details for activating the device. This is the same email when a device is initially created and contains the details seen when viewing the Help activating device link from the device details in the dashboard. The email is sent using the SMTP settings configured for the vault. The equivalent option in the dashboard is the Send link on the To install the data protection agent pop-up shown after clicking the Help activating device link on the Device details tab for a device.
See SendActivationEmail for an example PowerShell script.
Signature
ServiceResponse SendActivationEmail (CallingContext callingContext, SendActivationEmailInput input, out SendActivationEmailResult result);
Data structure
The input to CancelDashboardDevice is a deviceId.
[DataContract]
public class SendActivationEmailInput
{
public SendActivationEmailInput()
{
}
[DataMember]
public Guid DeviceId;
}
Result
The result is the BaseServiceResult described in General API structure.
[DataContract]
public class SendActivationEmailResult : BaseServiceResult
{
public SendActivationEmailResult()
{
}
}