General

About yourself
State of Michigan eSignature Administrator

Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics

I have a situation where I set delegation to a sender using code that has worked in the past.  The indication was that the delegation was successful BUT it didn't work.  Looking in the UI I figured

I know how to get subaccount api keys but how do I get a senders API key.  The user has left State employment so I can't have them just login and give it to me.   I don't see it in the Sender struc

When using

ReportService.DownloadCompletionReportAsCSV

 ReportService.DownloadUsageReportAsCSV

 

I know there is a tool to copy templates and layouts between users.  I want to add that ability to my own tool we have for our help desk.  Is there an example of how to do this in .NET that already

We have been able to use the Bulk Invite Sender Tool to bulk provision users.  Is there a way once someone is created in OneSpan that I can programmatically assign their role within a subaccount.

Replies Created

Reply to: Get Senders Roles (Rights)

0 votes

Thank you for the code. I'm willing to use Roles, Subaccounts and the rest of it while OneSpan finishes it's enhancements.  We need the reports for the Annual Security Audits required by State policy. 


Reply to: Get Senders Roles (Rights)

0 votes

Using the code below:

 

                OssClient oClient = new OssClient(GlobalVars.CurrentapiKey, GlobalVars.CurrentapiUrl);
                //Sender s =  oClient.AccountService.GetSender();
                // s.`
                //step1: get a list of senders (IDs)

                List<Sender> senderList = new List<Sender>();
                IDictionary<string, Sender> accountMembers;
                int i = 1;
                do
                {
                    accountMembers = oClient.AccountService.GetSenders(Direction.ASCENDING, new PageRequest(i++, 100));
                    senderList.AddRange(accountMembers.Values);
                } while (accountMembers.Count == 100);

 

from the sample it thinks I have over 22K users, which with only about 300 seems like an issue.  Is that because of subaccounts or something in the code?


Reply to: Get Senders Roles (Rights)

0 votes

I mean the code returns over 22K users but I only have around 300.  

 

I got it to "work" by just grabbing 300 and calling it "all" of them but the logic getting them would be a better long term solution.  It was returning names more than once from what I could tell.


Reply to: Retrieving Field Values

0 votes

I just started using this now that the user has finished their project.  Should I expect the fields from the FastTrack to always be in the same order when I extract them?  Are the fields saved in the order they are displayed, tabbed though, filled in or some other order?  Thank you


Subscriptions

Topics Replies Freshness Views Users

I have a situation where I set delegation to a sender using code that has worked in the past.  The indication was that the delegation was successful BUT it didn't work.  Looking in the UI I figured

1 1 year 1 month ago 27
Profile picture for user Duo_Liang

I know how to get subaccount api keys but how do I get a senders API key.  The user has left State employment so I can't have them just login and give it to me.   I don't see it in the Sender struc

1 1 year 2 months ago 38
Profile picture for user Duo_Liang

When using

ReportService.DownloadCompletionReportAsCSV

 ReportService.DownloadUsageReportAsCSV

 

1 1 year 2 months ago 25
Profile picture for user Duo_Liang

I know there is a tool to copy templates and layouts between users.  I want to add that ability to my own tool we have for our help desk.  Is there an example of how to do this in .NET that already

1 1 year 2 months ago 32
Profile picture for user Duo_Liang

We have been able to use the Bulk Invite Sender Tool to bulk provision users.  Is there a way once someone is created in OneSpan that I can programmatically assign their role within a subaccount.

3 1 year 3 months ago 44
Profile picture for user Duo_Liang

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.