dlukic

Updating Sender

0 votes
I use following method to update senders info: eslClient.AccountService.UpdateSender(info, senderid); The problem is that once this is done sender is inactive and invitation needs to be sent to a sender. Is there a way to activate sender immediately after update? I think there is another option. Delete sender and then invite user: EslClient.AccountService.InviteUser(member) where member.Status = active. Please let me know if i can use first option without sending invitation or i need to use second option.

Reply to: Updating Sender

0 votes
Hi dlukic, Your best bet would be the second option where you delete the sender and re-invite with status active. Regards,
Haris Haidary OneSpan Technical Consultant

Reply to: Updating Sender

0 votes
Unfortunately that option is not the best. I don't want to disconnect all packages/documents from this sender ownership. Is it possible to achieve this any other way?

Reply to: Updating Sender

0 votes
What you could do is a REST call to activate your sender:
POST https://sandbox.esignlive.com/api/account/senders/{senderId} 
with the following JSON payload:
{
	"status": "ACTIVE"
}
Haris Haidary OneSpan Technical Consultant

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