Disabled User Clear Saved Signatures
Friday, April 11, 2025 at 10:59amSince OneSpan applies saved signatures (from File and Drawn) for someone who is disabled as a sender but still signs documents we want to be able to clear those values so they aren't appied when someone is disabled.
Can I
- Going throught a list of users see when one is disabled
- Clear any saved image (from file)
- Clear a drawn image
Is this possible with the .NET API or even REST?
Reply to: Disabled User Clear Saved Signatures
Friday, April 11, 2025 at 01:17pmI was able to determine if the user was active and remove the saved image using the code below. How do I remove the hand drawn signature from them also?
Sender theSender = oClient.AccountService.GetSender(senderId);
Console.WriteLine("Sender Status=" + theSender.Status);
if (theSender.Status != SenderStatus.ACTIVE)
Console.Write("Sender is NOT Active");
oClient.AccountService.DeleteSenderImageSignature(senderId); //removed saved image