docusignapi

DocuSign: Is it possible to send a custom payload via PowerForm link and get it back via webhook?

吃可爱长大的小学妹 提交于 2020-01-03 05:07:26
问题 I am integrating with DocuSign APIs and I wonder if it's possible to pull off the following scenario: GET a PowerForm to obtain its URL Attach a custom payload to the URL (e.g., some stringified and urlencoded JSON) Send the URL to a user Have the user sign the documents attached to the PowerForm's template Receive the callback on my webhook Recover the custom payload somehow The context is this: I want to send a specific user a document to sign and when they do it - recognize their specific

How to redirect to back after signing completion in docuSign

陌路散爱 提交于 2020-01-03 05:03:06
问题 I'm trying to embedded signing workflow through this API http://iodocs.docusign.com/APIWalkthrough/embeddedSigning after successfully execution of this I got this response API Call Result: { url: 'https://demo.docusign.net/Member/StartInSession.aspx?t=sdf34f6-8592-4250-83a8-4bf34f5g3t' } Navigate to the above URL to start the Embedded Signing workflow... I opened this url in browser manually and tried to sign. after singing it asked to click on finish to complete this process(as obvious). but

Demo Docusign API: java.net.SocketException Connection reset

ε祈祈猫儿з 提交于 2019-12-31 06:48:28
问题 We started receiving this error recently. Our API has been working for over four years. Did something change on the DEMO website? Caused by: java.net.SocketException invoking https://demo.docusign.net/API/3.0/AccountManagement.asmx: Connection reset 回答1: Per DS Support, DocuSign has ended support for TLS1.0 in Demo from May 29th, 2018 and will soon end the support in PROD as well. Please test the connection on your end if you are using TLS1.0, if yes then you need to upgrade it to TLS1.1+ to

Docusign Anchor tab

随声附和 提交于 2019-12-31 05:14:32
问题 I am trying to send a document for signing via the DocuSign REST API. I'm using Sign Here tabs with an Anchor text string. The JSON Object request: "emailSubject" : "This is email subject", "emailBlurb" : "This is email body", "recipients" : { "signers" : [ { "routingOrder" : "1", "name" : "Recipeient Name", "email" : "Recipeient Email Address", "recipientId" : "1", "tabs" : { "signHereTabs" : [ { "anchorString" : "By:", "anchorXOffset" : "1", "anchorYOffset" : "1", "anchorIgnoreIfNotPresent"

Docusign Anchor tab

徘徊边缘 提交于 2019-12-31 05:14:22
问题 I am trying to send a document for signing via the DocuSign REST API. I'm using Sign Here tabs with an Anchor text string. The JSON Object request: "emailSubject" : "This is email subject", "emailBlurb" : "This is email body", "recipients" : { "signers" : [ { "routingOrder" : "1", "name" : "Recipeient Name", "email" : "Recipeient Email Address", "recipientId" : "1", "tabs" : { "signHereTabs" : [ { "anchorString" : "By:", "anchorXOffset" : "1", "anchorYOffset" : "1", "anchorIgnoreIfNotPresent"

Using DocuSign REST APIs to Get/Set Template Fields

浪子不回头ぞ 提交于 2019-12-31 04:57:07
问题 I've created a test template within the DocuSign sandbox in preparation for some automation with another system. I'm trying to populate these custom fields as there will be dynamically entered data that will need to be included. So far, I've had no trouble with authentication, or creating an "envelope" built off of the template, or assigning the roles. I can get the IDs of the templates, envelopes, documents no problem. However, none of my attempts to retrieve a list of the custom fields or

Docusign - Adding a non signing CC role with same routing order

别说谁变了你拦得住时间么 提交于 2019-12-29 09:18:13
问题 We have one template configured in Docusign and have a requirement of adding one signer and one non-signer to whom we need to send a carbon copy,both,before and after the signing process.I chose the Add CC button and added the required role and specified the action as Receive a copy.Now, the email address for the signer and the non-signer are dynamic and hence I am using the API to populate the role name,email address. For the role name, I specify it in the template and use the same matching

Breaking out of Iframe in Docusign

☆樱花仙子☆ 提交于 2019-12-29 09:16:08
问题 I am using Iframes to render the embedded Docusign document. I was successfully able to sign the document in the Iframe and get redirected to my specified URL after signing. But the Redirect URL is displayed inside the IFrame. I need to breakout of iframe and display in parent page. I have tried the following code snippet but to no avail. 1) th:target="_parent" in the iframe tag 2) if (top !== self) top.location.href = self.location.href; 回答1: I was able to find solution for that. I just

DocuSign API embedded signing with email notification when envelope is created

大兔子大兔子 提交于 2019-12-26 16:32:16
问题 I have a rails app that uses docusign_rest gem. I can get the URL for embedded signing when the envelope is created but an email notification is not sent to the signer. I have played with these settings but cannot find the right settings for what I wanted. Envelope Delivery Settings 回答1: You should also specify the embeddedRecipientStartURL in your request. This will ensure the embedded signer receives a notification to sign the document. See this answer 来源: https://stackoverflow.com

DocuSign API embedded signing with email notification when envelope is created

我们两清 提交于 2019-12-26 16:30:36
问题 I have a rails app that uses docusign_rest gem. I can get the URL for embedded signing when the envelope is created but an email notification is not sent to the signer. I have played with these settings but cannot find the right settings for what I wanted. Envelope Delivery Settings 回答1: You should also specify the embeddedRecipientStartURL in your request. This will ensure the embedded signer receives a notification to sign the document. See this answer 来源: https://stackoverflow.com