docusignapi

DocuSign Java Rest Api - Combining Anchor Tagged Custom File and PDF Form Field Transformation (Composite Templates)

余生颓废 提交于 2020-01-21 19:41:10
问题 In my application, I have a package of PDFs that I combine and send to DocuSign. This works perfectly using SignHere and Initial here AnchorTags; however, I have now need to include certain PDF's that require user input fields (such as a W-9 form). I have tried multiple ways of creating the template, without success. I've been able to get DocuSign to recognize all of the PDF form fields (in the templates UI) but I haven't been able to get those to the user. I have two significant issues:

Allow user to only Print and Sign for an envelope

青春壹個敷衍的年華 提交于 2020-01-17 14:55:24
问题 For users in countries where e-Signatures are not recognized, I would like to get only Wet Signed documents. Is there any way in Docusign where I can configure an envelope to be signed only using Print and Sign - Upload or Fax? I tried not including a Sign Here tab in the document. In that case, the user is shown the option to Finish, or Print and Sign, and if the user clicks on Finish, Docusign automatically assumes that the user has signed the document which is not the case however. 回答1: If

DocuSign Signer Groups

心不动则不痛 提交于 2020-01-17 06:10:38
问题 Where should I go about creating and setting the signer groups as I am unable to see them in my DocuSign dashboard currently? Can I create the signer groups in the API before defaulting them in the embed and send api? 回答1: First you should note that Signing Groups functionality is not available on all DocuSign account plans so you should first verify your account plan. Signing groups are available through sandbox accounts so you should be able to test at least. To access Signing Groups click

DocuSign Signer Groups

自闭症网瘾萝莉.ら 提交于 2020-01-17 06:10:15
问题 Where should I go about creating and setting the signer groups as I am unable to see them in my DocuSign dashboard currently? Can I create the signer groups in the API before defaulting them in the embed and send api? 回答1: First you should note that Signing Groups functionality is not available on all DocuSign account plans so you should first verify your account plan. Signing groups are available through sandbox accounts so you should be able to test at least. To access Signing Groups click

DocuSign SOAP API: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)

半世苍凉 提交于 2020-01-17 05:59:08
问题 I sent a DocuSign SOAP API request. DocuSign responded with status 500 and faultstring of 1234: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). I searched for the error code 1234 in the docs and online but couldn't find it. The headers and XML I sent: Content-Type: text/xml; charset=UTF-8 SOAPAction: "http://www.docusign.net/API/3.0/CreateAndSendEnvelope" X-DocuSign-Authentication: <DocuSignCredentials><Username>email@example.com</Username><Password>

How to send multiple documents for signature DocuSign for Salesforce

為{幸葍}努か 提交于 2020-01-17 05:43:09
问题 Please can someone assist me. I am new to DocuSign. I have a project I am working on whereby the customer wants to be able to send multiple documents to a recipient for signature. From the standard DocuSign set up, you can add documents upon envelope creation but I am looking for a way to automate this. For instance I created a custom button that automatically sends the envelope to a recepient. But it seems I can only add one document template there. Could someone please advise me on what to

How to set an option to delete envelope in docusign

点点圈 提交于 2020-01-17 01:55:19
问题 am in the process of understanding Docusign and API. I am trying to achieve with docusign that I should have the document removed after x days and also the envelope. I see a settings for document purge in the feature tabs. But i am not seeing an option for deleting the sent envelope itself as i am taking the backup in my database myself. Any reference to online material or explanation would be greatly appreciated. Thank you!!! 回答1: The "Document Retention" feature in DocuSign will purge

Docusign Powerforms Embed Success Status

强颜欢笑 提交于 2020-01-14 06:11:09
问题 I'm working on a PHP application that has multiple products which require signing from a customer before going for the product. I'm using powerforms link to embed them on my application (using iFrame). They work fine. But the problem is I need to store the document signed status in my database. The we can set a return URL in the Docusign Preferences Page. But that will be static and I won't have a clue of what product the user has selected. References: Powerform Docs 回答1: You can use DocuSign

Docusign Powerforms Embed Success Status

五迷三道 提交于 2020-01-14 06:11:09
问题 I'm working on a PHP application that has multiple products which require signing from a customer before going for the product. I'm using powerforms link to embed them on my application (using iFrame). They work fine. But the problem is I need to store the document signed status in my database. The we can set a return URL in the Docusign Preferences Page. But that will be static and I won't have a clue of what product the user has selected. References: Powerform Docs 回答1: You can use DocuSign

receiving INVALID_EMAIL_ADDRESS_FOR_RECIPIENT when updating envelope status

岁酱吖の 提交于 2020-01-14 05:23:29
问题 I have an envelope, that if created with status=sent works fine (I can call the signing interface and it gets emailed to the recipients defined in the envelope). The exact same envelope XML, with status=created, no other difference, will fail when I attempt to change the status with: public string SendEnvelope(string envelopeID) { string url = baseURL + "/envelopes/" + envelopeID; string requestBody = "<envelope>" + "<status>sent</status>" + "</envelope>"; HttpWebRequest request =