docusignapi

DocuSign embedded signing returnUrl length limit?

£可爱£侵袭症+ 提交于 2019-12-24 03:13:19
问题 While working on a DocuSign embedded signing process (which has worked in the past), I noticed that after signing the document the 'event' parameter was missing from the 'returnUrl' I was being sent back to. The returnUrl looks like: http://www.example.com/index.php?param1=value1 ... &param10=value10 The parameters were being passed on returning from signing, but no event=signing_complete parameter was being added. I tried removing the parameters, and suddenly the event parameter returned.

Docusign Radio group pre-fill issues using api

时光怂恿深爱的人放手 提交于 2019-12-23 23:07:57
问题 I am trying to pre-select a radio button group using api. however the generated document doesn't seem to have any radio button selected. Sample: Radio radVal1 = new Radio(); radVal1.setSelected("True"); radVal1.setValue("ChoiceYes"); Radio radVal2 = new Radio(); radVal2.setSelected("False"); radVal2.setValue("ChoiceNo"); List<Radio> radioVals = new ArrayList<Radio>(); radioVals.add(radVal1); radioVals.add(radVal2); RadioGroup rgrp = new RadioGroup(); rgrp.setGroupName("RadioGroup4"); rgrp

PHP: Docusign API autopopulate tabs for template

人盡茶涼 提交于 2019-12-23 19:08:12
问题 Objective: Autopopulate some values using the tabLabel/value key pair for server templates, using the beta Docusign PHP Client. I've looked at quite a few stackoverflow posts and unfortunately the one that seems to be the closest related to me seems unanswered: Docusign API - prefilling tab values on envelope created from template I was unable to find this "SecureField" option in any sort of preferences. Currently, the name field fills in automatically just because of the template role being

Docusign: Creating a Document with dynamic content

给你一囗甜甜゛ 提交于 2019-12-23 05:48:07
问题 I have a document that is very similar to a Purchase Order that needs to be sent out for a signature through DocuSign. There's header type data that is fixed and can easily be placed on the document and then filled with tabs. Along with this, there are Details which may be 1 or more. I'm wondering what the best strategy to use is to create this type of Document with Docusign API? Edit: Including a sample of the PDF that needs to be produced: TIA 回答1: You're really asking about dynamically

Preview tags with docusign API

試著忘記壹切 提交于 2019-12-23 05:22:31
问题 I am using the Rest API to create the docusign envelope. We have tags inside the document using anchor text. Is there a way to preview the tags before we send the envelope? 回答1: I don't believe there's a way of mimicing the Preview feature when viewing envelopes through the DocuSign Console through the API, however the Embedded Sending functionality basically does a preview although you can change aspects about the envelope too. With Embedded Sending you can generate a URL token that the

Docusign Embedded Signing - Handling Callback for successful signing

梦想的初衷 提交于 2019-12-23 05:09:27
问题 I am developing a website based on AngularJS which interact with API's made on Django/Python . I have an iframe which uses Docusign's Embedded Signing written on Python . I know about returnUrl and the query parameters it has. But what I'm trying to achieve is to close(remove from DOM) the iframe on successful completion. Can anyone help me on how to go about on this? Docusign 回答1: I'm not sure about implementation specifics with the technologies you're using, but perhaps you can implement a

List of Valid DocuSign Merge Fields for Branding Emails? #DocuSignAPI

蓝咒 提交于 2019-12-23 02:54:26
问题 Trying to determine how to create custom DocuSign merge fields for branding emails using the branding feature and the API. Also looking for a list of possible fields. There is a bunch of documentation about how to perform the customization but no details about the valid merge fields. I have tried contacting DocuSign directly but they were unable to provide the details so I thought maybe someone in the community has gone through this process. Thanks, Dave 来源: https://stackoverflow.com

Docusign gives incorrect TimezoneOffset in WebHook Event data

烂漫一生 提交于 2019-12-22 13:57:44
问题 We are using WebHook Event also known as Connect which is like a SOAP APIs call to update the document signature status in our web application. When a DocuSign document is created or updated the XML data that is pushed in the Webhook events contains invalid TimeZoneOffset data. For instance: the offset for Indian Standard Time is +5:30 but in the xml it says only 5 . Please see below the snippet of the xml: <DocuSignEnvelopeInformation> ... </DocumentStatus> </DocumentStatuses> <

How can I setup a web hook to check on DocuSign Envelope status?

好久不见. 提交于 2019-12-21 06:17:12
问题 I have the code written which is using envelopes to request a signature from the client like in this tutorial: https://www.docusign.com/developer-center/recipes/request-a-signature-via-email-using-a-template My question is, how can I define a web hook URL which can be used to update the envelope's status? I would like to be notified and to be able to update the envelope status in my database once the client signs the documents. Is this possible? Does EnvelopeDefinition class expose some

Docusign: creating envelopes through templates with the REST API and prefilling tags

荒凉一梦 提交于 2019-12-21 05:12:20
问题 I'm integrating Docusign so that recipients can see their envelopes embedded on my site. I first create the envelope with the api, and I'm attempting to prefill Data Fields using dynamic data. As far as I can tell, there's nothing wrong with my json that I'm using to create the envelopes. None of the other solutions on StackOverflow to this issue have helped. My json looks like this (which I send to https://demo.docusign.net/restapi/v2/accounts/360734/envelopes): { "status": "sent",