docusignapi

Docusign composite template giving TAB_REFERS_TO_MISSING_DOCUMENT

天涯浪子 提交于 2019-12-12 04:34:29
问题 I was trying to use these two templates as a composite template thru the REST api. I sent out each template on its own and it worked fine. Here is the request from the log file: Content-Length: 1526 Host: demo.docusign.net X-DocuSign-Authentication: {"Username":"Kathleen.Jones@XXX.com","Password":"[omitted]","IntegratorKey":"[omitted]"} X-Forwarded-For: 63.118.233.100, 104.129.194.117 { "compositeTemplates": [ { "serverTemplates": [ { "sequence": "1", "templateId": "2d743750-f910-4a30-ad34

Deleted Draft Envelopes have inaccurate status

自作多情 提交于 2019-12-12 04:33:11
问题 Occasionally our application will create Draft Envelopes in DocuSign which are then deleted by an end user in the DocuSign UI without ever being sent. When our application uses the SOAP API call RequestStatusCodes() to query created envelopes by Envelope ID we still get a status of 'Created' for the deleted envelope. This is a problem because our system maintains a lock on documents after they are upload to DocuSign until they reach a terminal state (Deleted, Voided, Completed). Is it

Docusign Send Multiple Envelope to multiple Signer with one to one Document to Signer mapping

假装没事ソ 提交于 2019-12-12 04:25:28
问题 I have been working on Salesforce to Docusign Integration. I have multiple documents with Specific signer for each document i.e. one document should be send to one specific user, not all . But I want to do this in one Rest API call to docusign! The documents are stored in Accounts attachments which are created dynamically for each user which are specific to user. I have been trying this using CompositeTemplates, what I am doing is, adding document and Signer in each inlineTemplate , But it is

Docusign API generated envelope is not following routing order

混江龙づ霸主 提交于 2019-12-12 04:17:46
问题 I generate a mixed ceremony envelope using a composite template: { "status": "sent", "emailBlurb": "testing creation from template", "emailSubject": "Please sign this template", "compositeTemplates": [{ "serverTemplates": [{ "sequence": "1", "templateId": "3f35423e-884a-4bf2-a9b5-19eaac4a5b8f" } ], "inlineTemplates": [{ "sequence": "1", "recipients": { "inPersonSigners": [{ "name": "LLLLL", "email": "LLLL@some.com", "hostemail": "LLLLL@some.com", "hostname": "LLLLLL", "roleName": "Signer 1",

How to get list of payment gatways in DocuSign account.?

梦想的初衷 提交于 2019-12-12 04:13:03
问题 I am working on DocuSign Payment integration. How to get the list of payment gateways that associated to the account? I tried with the docusign rest api, but getting following error with the status code 404. { "errorCode": "RESOURCE_NOT_FOUND", "message": "The URL provided does not resolve to a resource." } 回答1: Please make sure your get request is in this format. GET https://demo.docusign.net/restapi/v2/accounts/{AccountId}/payment_gateway_accounts 回答2: I have verified the problem with GET

I'm getting status 0 when we are sending mail by using api with docusign

十年热恋 提交于 2019-12-12 04:08:44
问题 I am using sandbox account of DocuSign account. by using that I am sending mail with the help of API by using curl and PHP. But it is showing result like below. [ok] => [errMsg] => Error calling DocuSign, status is: 0 And I am using the code below. to get the result. define('DS_ACCOUNT_EMAIL', 'xyzmail@gmail.com'); define('DS_ACCOUNT_PW', 'xyzaccount'); define('DS_INTEGRATOR', 'YYPO-f28ccbb9-1cba-4f00-b03d-39814d76e700'); $documentName = 'test'; $recipientEmail = 'abcmail84@gmail.com';

Running into java.lang.NoClassDefFoundError: class com.sun.jersey.core.header.MediaTypes while using the Docusign Java Client

萝らか妹 提交于 2019-12-12 04:03:44
问题 I am new to Docusign and trying to use the Java Client However I run into the following error when trying to use code from the recipes - Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.sun.jersey.core.header.MediaTypes at com.sun.jersey.core.spi.factory.MessageBodyFactory.initReaders(MessageBodyFactory.java:182) at com.sun.jersey.core.spi.factory.MessageBodyFactory.initReaders(MessageBodyFactory.java:176) at com.sun.jersey.core.spi.factory.MessageBodyFactory.init

Docusign iframe css

时光毁灭记忆、已成空白 提交于 2019-12-12 03:55:06
问题 Docusign iframe is wider then my wrapper(html body). Is there a way to change the width of the content in the iframe? I can change the width of the iframe to match the page, but then I end up having a horizontal scroll bar. Also, users need to sign a document that's like quarter of a page. But Docusign shows the whole page, and when I try to change the height, I get a horizontal scroll bar. There's also a lot of white space after the document. How can I get rid of the white space after the

For In Person Signer type, the Recipient Signer Name cannot be blank

大城市里の小女人 提交于 2019-12-12 03:50:20
问题 I'm suddenly getting this error message when I try to instantiate an envelope from a template: text: '{\r\n "errorCode": "IN_PERSON_SIGNER_NAME_CANNOT_BE_BLANK",\r\n "message": "For In Person Signer type, the Recipient Signer Name cannot be blank."\r\n}', This is the code I'm using to create TemplateRoles: const tRole = new docusign.TemplateRole(); tRole.setRoleName(templateRoleName); tRole.setName(signerName); tRole.setEmail(signerEmail); tRole.setInPersonSignerName(signerName); tRole

Docusign request returns error only when tabs set?

百般思念 提交于 2019-12-12 03:25:17
问题 I'm transforming PDF Fields on the associated Document. That works fine -- but I'd like to populate the tabs with values. When I modify the request adding tabs: var text = new docusign.Text(); text.setName('BorrowerName'); text.setValue('Grace Hooper'); text.setLocked('true') var tabs = new docusign.Tabs(); tabs.setTextTabs([text]); var signer = new docusign.Signer(); signer.setEmail(signerEmail); signer.setName(signerName); signer.setRecipientId('1'); signer.setRoleName('borrower'); signer