FInky

Adding senders to an account without sending invitation email

0 votes

Hi,

I am looking for a way to add senders to our OneSpan account without sending the invitation email.

We are integrating with OneSpan using the .net sdk and it is being used solely as a system-to-system integration. No Senders will be creating transactions through the UI. The system will be creating transactions on their behalf. 

Is there a way to do add a new sender programmatically bypassing the invitation email?

thanks,


Reply to: Adding senders to an account without sending invitation email

0 votes

Hi FInky,

 

There's a Sender Tool hosted in the Code Share, which offers the admin users the ability to bulk invite senders. If you toggle the "Activate Sender" option as below screenshot indicates, senders will be activated as "ACTIVE" status immediately without receiving the notification emails.

9-4-4

More reference:

OneSpan Sign Developer Blog: Sender Tool – Part 1

OneSpan Sign Developer Blog: Sender Tool – Part 2

 

Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Adding senders to an account without sending invitation email

0 votes

Hi FInky,

 

This code snippet will do the trick:

AccountMember member = AccountMemberBuilder.NewAccountMember("[email protected]")
                .WithFirstName("John")
                .WithLastName("Smith")
                .WithCompany("ABC Bank")
                .WithTitle("CEO")
                .WithStatus(SenderStatus.ACTIVE)
                .Build();
        
ossClient.AccountService.InviteUser(member);

 

Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


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