Adding senders to an account without sending invitation email
Wednesday, September 30, 2020 at 05:43pmHi,
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
Wednesday, September 30, 2020 at 08:17pmHi 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.
More reference:
OneSpan Sign Developer Blog: Sender Tool – Part 1
OneSpan Sign Developer Blog: Sender Tool – Part 2
Duo
Reply to: Hi FInky, OneSpan Sign…
Thursday, October 1, 2020 at 10:45amThanks Duo_Liang, that will work nicely!
Do you know if there is a code snippet to add an "ACTIVE" Sender so I can automate the process in the future?
Reply to: Adding senders to an account without sending invitation email
Thursday, October 1, 2020 at 10:50amHi 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