docusignapi

Docusign Api: Why can't I select the template to send the envelope with?

久未见 提交于 2019-12-24 09:38:12
问题 I have a problem sending envelopes with DocuSign. I specify the templateId that I want to use (lets say, template 2) with the envelope, but the recipient keeps getting template 1 instead of template 2 or template 3. Here is my JSON object: { "emailSubject": "Test Email", "emailBlurb": "This is for testing docusign api", "templateId": "{2}", "templateRoles": [ { "email": "email", "name": "Shawn Williams", "roleName": "Signee", "tabs": { "fullNameTabs": [ { "tabLabel": "Name 67755b0d-2284-....

Docusign embedded signing not working in chrome

99封情书 提交于 2019-12-24 09:34:25
问题 I have successfully integrated docusign embedd signing in our website https://impulsedecisions.ae/agreement It works well in mozilla. But it is not working in google chrome. it shows the url https://demo.docusign.net/Signing/startinsession.aspx?t=6fcbfcbf-da5a-41d4-a771-8b2dab3ca14d&AspxAutoDetectCookieSupport=1#&pat=1 with a white screen. 来源: https://stackoverflow.com/questions/44152977/docusign-embedded-signing-not-working-in-chrome

Docusign Integration - Single integration key for multi-tenant application

人盡茶涼 提交于 2019-12-24 09:16:18
问题 We're trying to implement a Docusign integration for a multi-tenant cloud application (i.e. https://company1.app.com, https://company2.app.com, etc...). The goal is to allow the tenant admin (our customer) to upload envelopes containing document templates for users to sign when they first login. Each tenant admin will have their own Docusign account/envelopes. We've implemented a solution for this; however, it requires each tenant admin to create a separate Integration key and go through the

Docusign combined pdf - can we extract the individual documents?

南楼画角 提交于 2019-12-24 09:02:14
问题 We're looking at is downloading the combined pdf and then extracting the individual documents ( not my idea ). I tried using pdfsharp against my combined pdf, but I don't see any title information on the individual documents. I was just wondering if this is even possible. If I use pdfsharp, it can pull out all the pages, but I have no way of really knowing which pages belong with with document. 回答1: After you create a DocuSign envelope you can read the document information from the envelope

DocuSign API auto convert PDF fields to SecureFields

余生颓废 提交于 2019-12-24 08:49:47
问题 When using the DocuSign API to create a new template, is there a way to automatically convert PDF fields to DocuSign SecureFields like there is when using the web console? Posting to: https://demo.docusign.net/restapi/v2/accounts/{account_id}/templates Request body: { "emailsubject":"Please sign this", "templateId":"", "recipients":{ "signers":[{ "routingOrder":1, "roleName":"RoleOne", "recipientId":"1" }] }, "envelopeTemplateDefinition":{ "name":"test", "templateId":"" }, "documents":[{

How do you assign a NumberTab using .Net API

女生的网名这么多〃 提交于 2019-12-24 07:49:20
问题 I'm using the .Net API via DocuSign.eSign.dll and I'm trying to assign a DocuSign.eSign.Model.Number object to the signer, however, I don't see a method to assign it to the DocuSign.eSign.Model.Signer. According to some other resources, using the REST API one can assign a Number Tab using the following syntax: { "signers": [ { "tabs": { "numberTabs": [ { "validationPattern": "", "validationMessage": "", ... However, using the .Net API via the provided DocuSign.eSign.dll - the assignment

What are the possible values for DocuSign account time zone from DocuSign Connect update?

帅比萌擦擦* 提交于 2019-12-24 07:35:17
问题 I am using DocuSign Connect/DocuSign Event Notifications to update DocuSign envelope/recipient statuses. I have written a .net application that parses an XML posted by Connect/Event notifications to update the statuses. Since each of my client's DocuSign account lies in a different time zone, I retrieve time zone of each of my client's DocuSign account from Connect update and my .net application adds offset based upon the time zone to update the statuses. I need to know all possible values of

Error when going live on Docusign API

拜拜、爱过 提交于 2019-12-24 06:57:29
问题 After developing in the sandbox, we got our api key approved and promoted to a live account. Since then we've been getting the following response - response: { "errorCode": "ACCOUNT_LACKS_PERMISSIONS", "message": "This Account lacks sufficient permissions." } http code: 401 exeucted at: 2017-05-17 15:03:59 Based on my research and according to ACCOUNT_LACKS_PERMISSIONS error when creating envelope A setting needs to be switched on the backend at Docusign. The user mentions - "They changed a

Using custom “merge fields” in email resource files

此生再无相见时 提交于 2019-12-24 05:52:30
问题 Is it possible to use custom “Merge Fields” in the email resource file? According to https://support.docusign.com/en/guides/docusign-email-resource-file-v1-1 it is possilbe to use merge fields for DocuSign data e.g. [Data:RecipientName]] Additionally we want to use merge fields for non DocuSign data. For example a hotline number that is based on customers (signers) segment). The hotline number is part of the rest-api-call as a recipient custom field 回答1: Unfortunately there is not a way to

Get form data (including concealed values) via API?

不羁的心 提交于 2019-12-24 04:56:05
问题 I'm working on a Form that contains various fields for adding values (texttabs/ listtabs/ etc). The form goes to two recipients, one of whom has access to half the fields which have been set to "concealed" (true) to prevent other recipients from viewing personal information. My question is , is it possible to retrieve the Form Data (concealed values) via API? I'd like to reattach these concealed values to the final product in my API script once the form is completed in Docusign. I searched