demellor | Posts: 50

Disabled User Clear Saved Signatures

0 votes

Since 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

  1. Going throught a list of users see when one is disabled
  2. Clear any saved image (from file)
  3. Clear a drawn image

 

Is this possible with the .NET API or even REST?

 


demellor | Posts: 50

Reply to: Disabled User Clear Saved Signatures

0 votes

I 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


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off