docusignapi

Signed document retrieval and envelope creation using Docusign API

↘锁芯ラ 提交于 2019-12-13 07:52:29
问题 We have been checking DocuSign APIs through your sandbox for the integration with our App. Currently we are facing issues where we are stuck. Would you please advise how we can retrieve the signed document through API? We found that once we signed a document the sigining URL seems to be expired and we couldn't find any other URL or anything to retrieve the signed document from our App programmatically? We are trying to integrate DocuSign with our hybrid mobile app and we saw in your

DocuSign: Using the custom workflow of the DocuSign AddRecipients, cannot add same recipient

天大地大妈咪最大 提交于 2019-12-13 06:48:52
问题 I add two SAME recipients with different routing order and role. The other is CC(routing order = 1) the another one is a signer (routing order = 99) . But whenever it never add the CC one. Do you know what's the problem? 回答1: In your Create Envelope API request, try adding allowRecipientRecursion as a top-level property of the Envelope object: { "allowRecipientRecursion": "true" } Setting allowRecipientRecursion to true in the Create Envelope API request should allow a recipient to appear

Use ports other than 80/443 for the event notification url (webhook)

和自甴很熟 提交于 2019-12-13 05:51:54
问题 Is it possible to use other ports than 80(http) and 443(https) for the event notification url when setting up a webhook? Like this: EventNotification eventNotification = new EventNotification(); eventNotification.Url = "http://example.com:82/Test.asmx/ReceivingMethod"; I can't tell if my server is blocking the traffic or if DocuSign can't use that url. I am using Docusign C# SDK. 回答1: You can use the service ngrok to create a public SSL 443 service point that is tunneled to your server's port

REST API - How to modify email notifications in DocuSign request

自作多情 提交于 2019-12-13 05:49:57
问题 How do you add reminders and expirations? I can CreateAndSend an envelope, but not sure where to add this optional parameter. My current JSON request below: POST https://demo.docusign.net/restapi/v2/accounts/175597/envelopes { "emailBlurb": "Please sign to complete the document signature", "emailSubject": "Reminder and Expiration Test", "documents": [ { "documentId": "1", "name": "7805dda0-9363-11e3-a6ef-0e26cd4d7860.pdf" } ], "recipients": { "signers": [ { "recipientId": "1", "email": "email

Extracting Attachments from Signer Attachment Tabs

≯℡__Kan透↙ 提交于 2019-12-13 05:38:29
问题 We have created a new template with option to add Attachments using Signer Attachment tabs. Please let us know how we can programmatically retrieve the Attached files from the envelope using API, we tried using RequestDocumentPDFs() method, but it doesn’t provide us to which “Signer Attachment” tab the document belongs to, since we have multiple “Signer Attachment” tabs. Ex. Option A (Checkbox 1 tab) – If the user selects, we will ask “Signer Attachment 1” tab to upload the related document.

DocuSign API - Envelope sent vie REST but no status returned

瘦欲@ 提交于 2019-12-13 05:38:05
问题 I've been using the DocuSign REST API solution provided on GitHub for around three months now with no issues, until the last hour. I'm able to create an envelope, create an embedded view for field placement and save the draft envelope within the enmbedded view. However, when I then use the SendEnvelope method I get a status of Any back rather than Sent as is expected. Upon looking further into it, the response.Content property is completely empty, thus the Deserialize method is unable to

PHP Docusign Api get template

孤街浪徒 提交于 2019-12-13 05:26:15
问题 I used the following code to get the docusign templstes i already have, however i am always getting the error - failed: SSL certificate problem: unable to get local issuer certificate. $templateApi = new DocuSign\eSign\Api\TemplatesApi(); $getTemplate = $templateApi->get($accountId, $contract_template_id); Is my code correct or is it something else that could cause the problem? 回答1: I suspect your server is either self certed or is doesn't have SSL/ HHTPS / port 443 setup. See the

Senders Notifications

跟風遠走 提交于 2019-12-13 05:24:41
问题 I have the following json request, if I do not use any senders notifications, it works but if I add the senders notifications it does not, why? { "userSettings":[ { "value":"false", "name":"allowSendOnBehalfOf" } ], "signerEmailNotifications":{ "envelopeActivation":"false", "envelopeComplete":"false", "carbonCopyNotification":"false", "certifiedDeliveryNotification":"false", "envelopeDeclined":"false", "envelopeVoided":"false", "envelopeCorrected":"false", "reassignedSigner":"false",

Deliverymethod fax in docusign create and send API - demo environment

核能气质少年 提交于 2019-12-13 05:19:12
问题 Hi Trying to use the DocuSign createsendEnvelope API for a recipient with delivery method FAX and fax number. However in the demo environment the API needs a recipients email and always send out the email. The document is not faxed to the number provided. Can any one confirm if the demo environment is disabled for faxing options? Thanks in Advance! 回答1: The release notes for the "Fax Out" feature in the DocuSign SOAP API describe how to send via fax with the SOAP API (http://www.docusign.com

Phone Identity with Docusign

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-13 04:42:28
问题 I'm looking to build some C# desktop client application that will send out a large number of PDF to sign to a large number of different individual so I'm wondering if the docusign API provide access to automate the Phone identity feature? I was not able to find out the page on their site. 回答1: Yes you can access this through the api, the DocuSign Developer Center has pages on the more prevalent features, for full information always check the documentation: DocuSign API Documentation You can