docusignapi

Docusign embedded signing request from template

爷,独闯天下 提交于 2021-01-29 03:39:24
问题 I'm trying to create an embedded signing request from a template that I've created in my docusign account. I'm using Node JS and I can't seem to find the documentation on how to do this. The closest thing I've found are these quick start examples: https://www.docusign.com/developer-center/api-overview#quickstart but the embedded signing section confuses me even further because I don't see the "custom signing url" anywhere in the code, even though it was references in the docs. 回答1: This

Docusign go live review failed with message: Have made at least 20 successful API calls

雨燕双飞 提交于 2021-01-28 13:36:16
问题 From my demo account.i made 25 transactions and all the docs was sign and completed i am getting integrator key Review status failed Review Result: Have made at least 20 successful API calls. What is mean ? enter image description here 回答1: If go-live is not passing, and the tool says that you have not made 20 test API calls, then check: Did you use the authorize token generator tool to obtain an access token for your app? Those tokens can only be used during development. You need to use an

Docusign Rest with UTF-8 Characters

*爱你&永不变心* 提交于 2021-01-28 12:25:00
问题 I am trying to upload the Document using the Docusign Rest API, I have spanish characters in the body of the email and they are not displayed properly when Recipient gets the email. Listed below is the java code where I set the encoding to be UTF-8 and also I have pasted the Request Body before it hits the docusign server and also what the server is seeing Java Code public HttpURLConnection initializeRequest(String url, String method, String body, String httpAuthHeader) { try { Proxy proxy =

Docusign Rest with UTF-8 Characters

血红的双手。 提交于 2021-01-28 12:20:10
问题 I am trying to upload the Document using the Docusign Rest API, I have spanish characters in the body of the email and they are not displayed properly when Recipient gets the email. Listed below is the java code where I set the encoding to be UTF-8 and also I have pasted the Request Body before it hits the docusign server and also what the server is seeing Java Code public HttpURLConnection initializeRequest(String url, String method, String body, String httpAuthHeader) { try { Proxy proxy =

Transfer Envelopes between users in docuSign

你离开我真会死。 提交于 2021-01-28 07:11:02
问题 Is it possible to transfer onwership of an envelope between two users within the same account through c# DocuSign SDK or REST API. Found these posts but they are 4 and 5 years old. Transfer Envelope Between DocuSign Users DocuSign REST API, easily move envelope from user A to user B? (ie, change the envelope owner) Wanted to know if there are any updates ? Thanks 回答1: These are old posts because this is only possible with our older SOAP API. The newer, modern REST API does not have this

Docusign XML Check as Checkbox

我的未来我决定 提交于 2021-01-27 19:50:41
问题 I’m trying to populate a checkbox on a template. The documentation at https://www.docusign.com/p/APIGuide/Content/Sending%20Group/Tab.htm tell me to set Value = “X” to check the checkbox. That doesn’t work. Now I found documentation at https://www.docusign.com/p/RESTAPIGuide/Content/REST%20API%20References/Tabs/Checkbox%20Tab.htm that tells me to set select = true How do you check a checkbox? Here’s a summary of the XML: <envelopeDefinition xmlns="http://www.docusign.com/restapi"> <status

DocuSign API calls do not show on demo dashboard

廉价感情. 提交于 2021-01-07 06:32:46
问题 We are using DocuSign API via demo account for signatures. We are using Authorization Code Grant workflow and are obtaining authorizations in our demo workflow. So real access tokens are being used. But no API calls are being shown in our demo account API Dashboard. But I can see via our monitoring tool we are hitting DocuSign. Plus the flow of the integration is all working properly. Why are the calls not showing up? This is affecting our ability to proceed with app review process. Notes The

Is it possible to deep link into the native iOS and Android Docusign app?

风流意气都作罢 提交于 2021-01-07 05:50:26
问题 I am building a hybrid mobile application that has a requirement for offline Docusign functionality. Unfortunately, the only Docusign SDK that supports offline document signing is the native iOS SDK. I dont have the ability to build the offline sync myself leveraging the nodejs SDK either. Does anyone have experience deep linking into the iOS and Android Docusign mobile app? I am struggling to find any information on deep linking into the docusign app from a 3rd party app. I would like to

Populate docusign company tab

柔情痞子 提交于 2020-12-15 16:49:29
问题 In docusign, we created a template with two fields: Full Name and Company. For the company field, there is a unique data label id that was filled in. You can see a screenshot below Docusign Company Id Now, I am using the docusign api to create an envelope, populate the fields, then open a signing console. When I am creating the envelope, I send the following JSON payload to restapi/v2/accounts/UNIQUE ID/envelopes { "emailSubject": "Some Subject", "status": "sent", "compositeTemplates": [ {

DocuSign REST API INVALID_CONTENT_TYPE sending envelope from template with application/json

*爱你&永不变心* 提交于 2020-12-13 03:52:52
问题 I am using Google Apps Script to make a URL request to https://demo.docusign.net/restapi/v2.1/accounts/ACCOUNT-ID/envelopes (where ACCOUNT-ID is my proper numerical account ID.) It's being sent with the code UrlFetchApp.fetch(url, params) . params is { muteHttpExceptions: true, method: "POST", headers: { Authorization: "Bearer "+jwt, ContentType: "application/json" }, payload: payload } jwt is a token retrieved from the JWT auth flow at execution time, and payload is { "accountId": accountID,