docusignapi

Docusign http 400 Bad request

烈酒焚心 提交于 2019-12-24 21:46:38
问题 I am trying to find envelop id status in DocuSign and getting error bad request http 400; Please verify below SOAP request. <S:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="soap"> <S:Header> <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0

Demo Account issue: Account does not have permission to set 'display' or 'signermustacknowledge' properties on document

可紊 提交于 2019-12-24 21:05:18
问题 We are creating Docusign integration and want to add supplemental document to our DocuSign envelopes request. Could not find how to do it in Rest API Explorer. When I create manual Json on our Demo account with signermustacknowledege and display i get following response back. This Account lacks sufficient permissions. Account does not have permission to >set 'display' or 'signermustacknowledge' properties on document Can you please let me know where i can find API documentation for it and how

Docusign can't login. How to login in C# code?

倾然丶 夕夏残阳落幕 提交于 2019-12-24 20:16:59
问题 I have problem with Docusign.It says DocuSign.eSign.Client.ApiException: 'Error calling Login: { "errorCode": "PARTNER_AUTHENTICATION_FAILED", "message": "The specified Integrator Key was not found or is disabled." Here is my code // initialize client for desired environment (for production change to www) var apiClient = new ApiClient("https://demo.docusign.net/restapi"); string username="[Email]";; string password="[Password]"; string integratorKey="[IntegratorKey]"; // configure 'X-DocuSign

docusign what to set host variable when going live, I do NOT know how to use baseUrl

混江龙づ霸主 提交于 2019-12-24 16:07:32
问题 I promoted integrator key from demo account (Jeff.Zhu@global.com) to live account (accounts@ininin.com) already. I programmed this way for demo: $username = "Jeff.Zhu@global.com"; $password = "Pass2009"; $host = "https://demo.docusign.net/restapi"; $integrator_key = "4e8b9e67-8702-4e45-86de-f392fd5f19e2"; // create a new DocuSign configuration and assign host and header(s) $config = new DocuSign\eSign\Configuration(); $config->setHost($host); $config->addDefaultHeader("X-DocuSign

Retrieve copy of signed document with certificate appened?

社会主义新天地 提交于 2019-12-24 16:07:17
问题 If you download the completed copy of a signed document from the web interface, you have the option to download a copy with the summary (certificate) PDF appended to the end of the signed document. Is there a way to retrieve a signed document through the DocuSign api calls to get a copy of the signed document with the summary (certificate) appended? 回答1: Yes please review the getEnvelopeDocuments API documentation. By default it downloads the envelope documents. To get the Certificate of

DocuSign using REST API to set Signing Group as a recipient

≡放荡痞女 提交于 2019-12-24 12:09:04
问题 I am trying to send an envelope with a recipient being a Signing Group using the REST API. Here is example XML code that I POST: <?xml version="1.0" encoding="UTF-8"?> <envelopeDefinition xmlns="http://www.docusign.com/restapi"> <accountId>xxxxxx</accountId> <status>sent</status> <emailSubject>xxxxxxxxxxx</emailSubject> <templateId>xxxxxx-xxxx-xxxx-xxxxx-xxxxxxx</templateId> <templateRoles> <templateRole> <name>Test Signing Group</name> <roleName>Test Role Name</roleName> </templateRole>

Recipient tab x/yposition mismatch

杀马特。学长 韩版系。学妹 提交于 2019-12-24 11:27:26
问题 I can successfully add various tabs to a recipient of an draft envelope via the REST API. However, when I go to look at the target document via the manage tab of the website and I check the settings on the tab, the location values are completely different than what I entered via the REST API. What is the difference? Why the difference? What exactly is the unit of measurement on the webpage as well as the API? 回答1: If you're merely trying to determine the X/Y coordinate values to use in the

how to auto fill the power-form fields in docusign

吃可爱长大的小学妹 提交于 2019-12-24 10:31:14
问题 I am doing the docusign integration with my application. I have a powerform in my demo account which is opened every time a user request to sign a contract. When the user opened the powerform there are about 12 fields he have to fill. except the email field which is autofill by the docusign. Now i want the functionality that if a user opened that powerform he already have the options which he filled during the signup process. Like first name last name phone no . Can i do this from api? i have

Populate Dropdown options using c# code in a docusign template before creating envelope

久未见 提交于 2019-12-24 09:48:19
问题 I have create a template in my Admin Account Panel, and I am using the template to create new envelopes and send to different receivers. But in my template I have a dropdown whose value changes on some condition, like for State A it will have different values, for State B it will have different values. How do I handle it programmatically. Here is how I create an envelope from a template. string recipientEmail = "a@a.com"; string recipientName = "John Doe"; string templateRoleName = "Customer"

Docusign eSign: CreateEnvelope requests timing out

 ̄綄美尐妖づ 提交于 2019-12-24 09:40:13
问题 We've been having issues sending certain Docusign envelopes lately, specifically those with large file sizes. The errors we've been getting are: Error calling CreateEnvelope: The operation has timed out And The request was aborted: The request was canceled. No inner exception with any additional information in either case. These errors only occur on our production server; on my local development machine everything works fine, so I can only assume that this is a connectivity issue; that there