General

About yourself
State of Michigan eSignature Administrator

Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics

We have a number of existing layouts and we want to make them shared.  Is there a way to do it via the API>  We's list the layouts and then allow them to tell which ones we need to make shared

Using the OneSpanSign.sdk there is no document type for text files, which may or may not have the TXT extension.  I can drag and drop files via the UI into transactions but I don't see any easy way

Is there a way to use master account API key to get user specific API key for a selected subaccount.  I'm not sure what call to use if it's possible.

I have code that follows which I have used to setup delegation for various users.  All of the sudden users no longer have delegated access and using the code reports it setup delegation but it does

I have a transaction I'm creating in C# based on using at template.  The consent agreement and document to be signed are in the template.  I can create the transaction from the template no problem,

Replies Created

Reply to: delegation REST Stopped Working

0 votes

I just found that the problem happens when doing things via the UI so it must not be related to the API.  Sorry for the distraction.  Thank you for the answer.

 

 


Reply to: Set User Roles in Subaccount

0 votes

I attempted to use the code but assignAccountRoleToUser doesn't appear to exist within the .NET library v11.34.1.0

 


Reply to: Page Size now Limited

0 votes

I'm using the .NET libraries to access the API to make the call - not sure what the .NET calls underneath


Reply to: Page Size now Limited

0 votes

   public static string GetSenderID(string sendereMail)
       {//Load and Cache them to speed up searches possibly
           const int PullPageSize = 100; //was 500 but that now returns a null ptr?
           try
           {
               OssClient oClient = new OssClient(GlobalVars.CurrentapiKey, GlobalVars.CurrentapiUrl);
               int i = 1;
               PageRequest npr = new PageRequest(i, PullPageSize);
               IDictionary<string, Sender> accountMembers = oClient.AccountService.GetSenders(Direction.ASCENDING, npr);
               while (accountMembers.Count != 0)
               {
                   foreach (var s in accountMembers)
                   {
                       string email = s.Key.ToString().ToUpper();
                       string id = s.Value.Id;
                       //Console.WriteLine(email + " " + id);
                       if (email.Equals(sendereMail.ToUpper()))
                           return id.ToString();
                       i++;
                   }
                   PageRequest npr2 = new PageRequest(i, PullPageSize);
                   accountMembers = oClient.AccountService.GetSenders(Direction.ASCENDING, npr2);
               }
           }

           catch (System.Net.WebException ex)
           {
               Console.WriteLine("GetSenderID ERROR - " + ex.Message);
               return "";
           }
           return "";
       }


Subscriptions

Topics Replies Freshness Views Users

We have a number of existing layouts and we want to make them shared.  Is there a way to do it via the API>  We's list the layouts and then allow them to tell which ones we need to make shared

1 1 year 4 months ago 19
Profile picture for user Duo_Liang

Using the OneSpanSign.sdk there is no document type for text files, which may or may not have the TXT extension.  I can drag and drop files via the UI into transactions but I don't see any easy way

1 1 year 5 months ago 23
Profile picture for user Duo_Liang

Is there a way to use master account API key to get user specific API key for a selected subaccount.  I'm not sure what call to use if it's possible.

1 1 year 5 months ago 51
Profile picture for user Duo_Liang

I have code that follows which I have used to setup delegation for various users.  All of the sudden users no longer have delegated access and using the code reports it setup delegation but it does

2 1 year 6 months ago 21
Profile picture for user Duo_Liang

I have a transaction I'm creating in C# based on using at template.  The consent agreement and document to be signed are in the template.  I can create the transaction from the template no problem,

1 1 year 6 months ago 29
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.