docusignapi

DocuSign API: “Invalid Signature Credentials” error using Captive (Embedded) Recipients

自作多情 提交于 2019-12-13 03:02:03
问题 I am using SOAP based API call "CreateAndSendEnvelope" to create an envelope into desired DocuSign account. When I add recipients as Captive/Embedded recipient(s), I am able to create an envelope fine but while requesting tokens for the captive recipients, I am getting an error "Invalid Signature Credentials". Here is my request that I have made against my DocuSign demo account. POST https://demo.docusign.net/api/3.0/dsapi.asmx HTTP/1.1 Content-Type: text/xml; charset=utf-8 X-DocuSign

MaxRetryError with Docusign in Django

守給你的承諾、 提交于 2019-12-13 02:44:23
问题 I am working on a webapp for my company. After the user enters information into the form that I provide, a pdf form is generated (using weasyprint), filling in the customer's information into the fields necessary. However, I am needing to integrate docusign's webapi into my project. I have messed around with the code a bit, and have gotten to the current point below: def Signview(request): username = "myDocusignUsername" integrator_key = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" base_url =

DocuSign eSign RestApi ChunkedUploads

最后都变了- 提交于 2019-12-13 02:16:52
问题 I have a question about ChunkedUploads . Currently I am working on the solution for this post: DocuSign API Envelope creation timed out Can anyone explain how to send an EnvelopeDefinition in chunks ? Currently I call: var request = new ChunkedUploadRequest() { Data = <how to put the envelopeDefinition content here?> }; var response = envelopesApi.CreateChunkedUploadAsync( ApiAccountId, request ); Edit I am trying to understand how to wrap an EnvelopDefinition object into a

DocuSign Custom Connect - How to make a listener in php example?

吃可爱长大的小学妹 提交于 2019-12-13 00:39:31
问题 I am new to DocuSign and a novice php programmer looking to setup a DocuSign custom connect with my application. I am not an expert by any means ( taught myself php from reading online ), but I can reverse engineer things and figure out how to make things work. So the short of it is that I would like to see an example of a php listener for DocuSign Connect. The long story is that I signed for DocuSign primarily so that I can integrate it with my CRM ( not natively supported in Docusign ). I

Docusign - Error opening PDF downloaded through the Rest API

不羁岁月 提交于 2019-12-12 23:39:22
问题 With the REST api, I am trying to get the documents out of a completed envelope. My header is using X-DocuSign-Authentication. EnvelopesApi ap = new EnvelopesApi(); Encoding encode = System.Text.Encoding.GetEncoding("utf-8"); EnvelopeDocumentsResult edr = ap.ListDocuments((AccountId, "xxx-xx-xxx"); List<EnvelopeDocument> docs = edr.EnvelopeDocuments; foreach(EnvelopeDocument doc in docs) { Stream stream1 = ap.GetDocument(AccountId, "xxx-xx-xxx", doc.DocumentId); StreamReader reader = new

How to Set Email Subject Line and Email Message from JSON in Docusign

假装没事ソ 提交于 2019-12-12 23:35:34
问题 Could anyone explain to me that how to set email subject line and email message using JSON in Docusign. Note:(JSON string has to be passed as HTTP request). Thank you, Vignesh.B 回答1: Use the emailNotification property to set separate email subject and email body per each individual recipient. The emailNotification property should be set per recipient. Here is a sample Json for the createEnvelope request. POST /v2/accounts/{accountId}/envelopes { "recipients": { "signers": [ { "email":

DocuSign getRecipientView ttl_expired error

限于喜欢 提交于 2019-12-12 20:13:49
问题 I'm using the DocuSign API to POST to the Post Recipient View URL. I receive a response URL, but if I follow the URL it tells me: ...?event=ttl_expired . Example URL: https://demo.docusign.net/Signing/startinsession.aspx?t=66e01470-4fcb-xxxx-xxxx-2f9029036d21 I'm using the URL within seconds, so is there a reason I'm getting this error? 回答1: TTL does indeed refer to "Time to Life" so if you're getting that error and you're positive it's within the 5 minute TTL window (2 seconds sounds well

what is the proper class for an MVC DocuSign WebHook receiver in C#

最后都变了- 提交于 2019-12-12 20:06:53
问题 I am a beginner in DocuSign API Implementation. I have a webhook type action in my controller, thate inherited from ApiController base class. public class DocuSignController : ApiController But it's always shows a message like below. The controller for path '/XXX/XXX' was not found or does not implement IController. I know this issue the ApiController not inherited from the IController class. But the webhook needed ApiController (I hope i am right). My website have already SSL enabled (this

How to implement Docusign in a SPA without requiring end users to authenticate w/ DocuSign

会有一股神秘感。 提交于 2019-12-12 19:35:15
问题 I'm following the React OAuth Implicit example shown here: https://github.com/docusign/eg-02-react-implicit-grant and I'm confused as to how an end user of our React SPA is supposed to be able to create an envelope for themselves without having access to our Admin account password. As part of our app's sign up process, we have our end users fill out a form which prefills an envelope for them to sign via Docusign. We imagined that our Docusign admin account would authenticate our application

DocuSign API to send instant reminder email to pending recipients

白昼怎懂夜的黑 提交于 2019-12-12 07:04:01
问题 I want to send instant reminder to the recipients who have not signed the document yet through the DocuSign REST API. Suppose I have sent an envelope to 3 recipients and one recipient have signed it. After some days I want to send instant reminder email to all other pending recipients or some of pending recipients. I know there is API available to set reminders & expiration details. Is there any REST API available so we can send reminder email to pending recipients when user want? 回答1: This