Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
I hear from Account Reps at my Company that DocuSign has a feature that sends them an Email if the Signer has opened the Email sent to them by DocuSign.
I have a Dynamics CRM which matches the Statuses of the ESign Packages and I need to reconcile them.
Here is the scenario. I need to change the Expiration Date of several packages that are about to expire out 30 Days.
I was generating Packages without a problem using my Code but now I am returning the following error when trying to send a new Package.
I successfully uploaded a test Document in my SandBox to replace the standard acceptance that goes with the Document for Signature.

Replies Created

Reply to: Trying to pull Packages from ESign regardless of Status

0 votes
I went on to the Internet and think it should go something like this: var client = new WebClient(); client.Headers.Add("user-agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36"); client.Credentials.GetCredential(new Uri(ESignId), "AuthType"); var response = client.DownloadData("https://esignlive.com/api/packages?from=0&to=99"); Does that seem like I am on the right track? If so, I am not sure what the AuthType should be.

Reply to: Trying to pull Packages from ESign regardless of Status

0 votes
Thank you. That was helpful. But I am still not pulling Packages that have "trashed" = true. I have run the Get both in C# and using Postman and both results pull 49 Packages. That adds up to the 32 Packages I have in the InBox and the 17 Packages I have in Draft but does not include the 30 Packages that are in the Trash Folder. This is my Call: private static string GetData(string APIKey, Uri NewUri) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(NewUri); request.Headers.Add("Authorization", "Basic " + apiKey); using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) { if (response.StatusCode != HttpStatusCode.OK) throw new Exception(String.Format("Server error (HTTP {0}: {1}).", response.StatusCode, response.StatusDescription)); String responseString = ""; using (Stream stream = response.GetResponseStream()) { StreamReader reader = new StreamReader(stream, Encoding.UTF8); responseString = reader.ReadToEnd(); } return responseString; } } What am I doing wrong?

Reply to: Is it possible to Pre-Date a Signature using the .Net SDK?

0 votes
It's a good idea. I just have one concern. You say if the Packages were not started to be signed. All of them have been signed by the Customer but had not been counter-signed by us. Does that means that I cannot modify the Document? Or is each Signing Ceremony a separate thing?

Subscriptions

Topics Replies Freshness Views Users
I just discovered that someone in our Company is downloading the Document, printing it and having the Officer manually sign the Document rather than using the Web Site to Sign a Document. Yes.
5 4 years 9 months ago 26
Profile picture for user Duo_Liang
I hear from Account Reps at my Company that DocuSign has a feature that sends them an Email if the Signer has opened the Email sent to them by DocuSign.
1 5 years 11 months ago 98
Profile picture for user harishaidary
I have a Dynamics CRM which matches the Statuses of the ESign Packages and I need to reconcile them.
7 5 years 11 months ago 49
Profile picture for user harishaidary
Here is the scenario. I need to change the Expiration Date of several packages that are about to expire out 30 Days.
1 6 years ago 61
Profile picture for user harishaidary
I was generating Packages without a problem using my Code but now I am returning the following error when trying to send a new Package.
3 6 years 4 months ago 116
Profile picture for user harishaidary

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.