Questions tagged [docusignapi]

This tag can be used for programming related questions which may involve implementation of DocuSign technologies. Questions that do not involve programming are not on-topic. DocuSign System of Agreement products include eSignature, Click, Notary, CLM (contract lifecycle management), Rooms, and more.

This tag is for questions and knowledge sharing surrounding the use of DocuSign's REST or SOAP APIs. DocuSign's APIs can be integrated into any website, app, or embedded system that can make HTTP requests.

Main Resource: DocuSign Developer Center

Language-specific libraries: DocuSign GitHub Repository

Common tasks you can accomplish with the DocuSign APIs:

  • Request legally binding signatures on virtually any type of document
  • Embed document signing into your app or website
  • Collect form-data from recipients
  • Track documents in real-time
  • Enable multi-factor recipient authentication
  • Much more...

See the DocuSign DevCenter page for code samples showing common API workflows like sending documents for signature, embedded signing, polling for status; API reference documentation and more.


Tag usage

The tag is used for programming related questions with DocuSign technologies.

For non-programming DocuSign questions, please visit the DocuSign Community


5986 questions
1
vote
0 answers

Powerform Online and Salesforce Send Not working together

Here's my scenario: I have a Powerform that people sign online and I am passing AccountID parameters to a custom tag called AccountID on the form with no problems at all. In my DocuSign connect settings for Salesforce, I have it mapped to Account…
Jen
  • 21
  • 3
1
vote
1 answer

DocuSign - Word/Pdf/Html file send

I am using .net to integrate with DocuSign however I have a requirement to take a pdf/word/html file and send it via docusign but before add a few fields to the document. I believe adding the fields should be possibly from what I have read but I am…
Alex Stott
  • 15
  • 5
1
vote
2 answers

Rotate to sign not working inside iframe on a mobile device

At the end of our workflow, we submit our insurance document to docusign for embedded signing. When running inside an iframe, rotating the screen does not allow the user to sign with their finger. It still says rotate to sign. Due to cross-domain…
B2K
  • 2,541
  • 1
  • 22
  • 34
1
vote
2 answers

Corrupt Documents in new DocuSign envelope

I'm doing a POC to demonstrate DocuSign programmatically creating and routing an envelope containing a simple document. I'm using PowerShell and the JSON API. Login and the Create Envelope work without complaint, but the resulting Word doc routed…
Dan Loughney
  • 4,647
  • 3
  • 25
  • 40
1
vote
1 answer

Can Docusign CRCL use a filter?

When using the Docusign CRCL parameter to pull Contacts from a related list, is it possible to select only certain Contacts to be signers? For example, I have a related list under the Contract object that contains 4 Contact names. Is it possible to…
1
vote
1 answer

senderName - Programmatically setting senderName

I would like to set senderName programmatically for different recipients. My envelope has two recipients and a) for one of the recipient, I want the senderName to be my company and b) for another recipient, I would want to set it just before…
NodeRuby
  • 13
  • 4
1
vote
0 answers

Upload DocuSign Brand Profiles

What is the structure and contents of the .ZIP that needs to be uploaded to DocuSign using the REST API for uploading a new brand profile? The online documentation is pretty…
paperclip
  • 2,280
  • 6
  • 28
  • 39
1
vote
1 answer

Incorrect time in envelope summary

On the development server I have an account configured to use the EST/EDT timezone for the API calls. It seems that with this configuration, the API calls return a date with an incorrect time. For example, I have created an envelope at 12:46 GMT but…
user4007927
1
vote
0 answers

List of Valid DocuSign Merge Fields for Branding Emails? #DocuSignAPI

Trying to determine how to create custom DocuSign merge fields for branding emails using the branding feature and the API. Also looking for a list of possible fields. There is a bunch of documentation about how to perform the customization but no…
1
vote
1 answer

Retrieve copy of signed document with certificate appened?

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…
1
vote
1 answer

Auto Populate DocuSign PowerForm

I'm wondering how i can populate the DocuSign Powerform. I studied on Populating Custom Envelope Fields in a Web PowerForm But I can't understand how to deal with the Envelope Field Name OR Secure Field Name.As far as i understand those are required…
efat
  • 43
  • 4
1
vote
1 answer

eOriginal/eVault integration with DocuSign

My company recently signed up for partnership with DocuSign to build your signing routine into our software. The client looking to use our software currently uses DocuSign to sign documents and has an integration with eOriginal as the eVault for…
1
vote
2 answers

Docusign .NET Sdk Create document and get recipient view (Embed signing) (ACCOUNT_NOT_AUTHORIZED_FOR_ENVELOPE)

I'm trying to create envelope and get recipient URL for further processing. But always getting rest error "ACCOUNT_NOT_AUTHORIZED_FOR_ENVELOPE". string RecipientEmail = "123@123.com"; string RecipientName = "123"; string…
1
vote
1 answer

Integrate DocuSign using RestAPI

I'm trying to implement the DocuSign embedded signing. I'm kind of successful with few things left. Without a developer account it's not possible to use the API, isn't it? I both have a pro account and a free account. Then I created a developer…
efat
  • 43
  • 4
1
vote
1 answer

Docusign First API Call

$email = "xxxxxxxxxxx"; $password = "xxxxxxxx"; $integratorKey = "INTE-0f494cd8-d0c4-4cd1-9f46-85a86435d749"; $header = "" . $email . "" . $password . "" . $integratorKey…
efat
  • 43
  • 4