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
3
votes
1 answer

Docusign Send on Behalf Of (SOBO)

If any one has it, I'd welcome an example of how to use Docusign's Send on Behalf Of (SOBO) functionality. I'm using the SOAP API with XML, and even Docusign's Level III support has not been able to come up with a sample. Thanks.
Steve
  • 31
  • 3
3
votes
1 answer

Skip LOG IN TO DOCUSIGN popup after signing

I turned off the feature "Signer can create account" to get rid of that popup: https://stackoverflow.com/a/20616609/1015686 After signing the document, if the email of the user signing the DocuSign document has a DocuSign account, they get the…
WiredIn
  • 4,157
  • 4
  • 27
  • 23
3
votes
0 answers

DocuSign Post Template REST API call error "UNABLE_TO_LOAD_DOCUMENT"

When I perform a simple call to the DocuSign REST API (Post Template), I get the following error: { "errorCode": "UNABLE_TO_LOAD_DOCUMENT", "message": "Unable to load the document. Unable to load Document(1: document.pdf). Document is…
tooleks
  • 557
  • 5
  • 17
3
votes
1 answer

HTTP 406 Error While Logging In To DocuSign API

I have a prototype WinForms application that uses open-source DocuSign.Integrations.Client library. It was working correctly until a couple of days ago. Now every attempt to login results in HTTP 406 error. No code has changed on my side, and my…
rmamedov
  • 150
  • 1
  • 8
3
votes
1 answer

DocuSign Captive Recipient - XML Signing

We are creating Captive recipients using DocuSign SOAP based API call - CreateAndSendEnvelope in .net web application into our clients' DocuSign accounts. We are able to create envelopes fine but while requesting tokens for captive recipients, we…
Juiced Tech
  • 129
  • 7
3
votes
2 answers

How to acknowledge a Docusign Connect event

I'm working with Docusign Connect and receiving events happily. Recently I was looking at the docs and noticed the requireAcknowledgement flag and I'm trying to implement that with mixed success. Normally, when I receive a Connect Event, I return a…
Chuck Vose
  • 4,560
  • 24
  • 31
3
votes
1 answer

Can an integrator key be used across multiple clients if they have their own account?

We are implementing embedded document creation for our SaaS product. Some of our clients will be using their own accounts and credentials. Others may not have a DocuSign account and so will be able to set one up through us. How does a client…
uuunk
  • 93
  • 1
  • 1
  • 7
3
votes
1 answer

Updating the data field tag in Docusign from Salesforce data

I am using Docusign API Integration to Salesforce. I have a requirement to update the data field tag in a document by calling the Docusign API from Salesforce after it has been sent for signature. Let's say the routing order of signers are from…
sam_s
  • 197
  • 3
  • 12
3
votes
3 answers

Embedded DocuSign signing: using recipient's language

I'm using DocuSign's REST API to create envelopes in embedded signing mode. I authenticate the signers on my website, then ask DocuSign for recipient view. Users can sign documents, that's ok. My problem is: the embedded signing view is in english,…
benoitbb
  • 108
  • 4
3
votes
1 answer

Docusign:- The recipient you have identified is not a valid recipient of the specified envelope

Am new to docusign and trying to use the embeding feature. Here's the steps I followed: Created a template with a sample document uploaded. For the Receipent and Routing section, i created one role but didnt give the email and name. Since i need…
Alex
  • 51
  • 1
  • 3
3
votes
1 answer

DocuSign: How to prefill multiple text tabs with the same label in XML?

How do I preload tab values in a server template that has tabs that share the same values and tablabels? I am having trouble sending values to templates that share the same tablabel. On the forum I noticed that in JSON you add a \\* before the…
EricTCouch
  • 31
  • 2
3
votes
1 answer

DocuSign and PDF/ITextSharp positioning issue with C#

I am having an issue with SignHereTabs appearing out of place in a DocuSign document. I use ITextSharp to take a PDF forms template with many fields, I set data into the fields leaving 2 signature fields named appropriately, I then use…
3
votes
1 answer

Can I get the url for managing an envelope from the Docusign API?

I'm able to create an envelope with the API which returns the envelopeId which looks like: 13f23354-7eee-41d3-897a-c1353a1e465c When I navigate to docusign in my browser and open the envelope the url…
chuckfactory
  • 123
  • 9
3
votes
1 answer

Login with DocuSign REST API Authentication

/I need to pass the header information/ header{     "X-DocuSign-Authentication": "{\"Username\":\"abc@gmail.com\",\"Password\":\"mypassword\",\"IntegratorKey\":\"the-super-long-key\"}"  } /***How do I pass the username, password,…
Golden Lion
  • 3,840
  • 2
  • 26
  • 35
3
votes
2 answers

Is it possible to retrieve entered tag values from a signed DocuSign document

I am using the DocuSign REST API to created an embedded signing for a predefined document template using the /envelopes/{envelopeID}/views/recipient call. I know it is possible to pre-populate tag values when creating the envelope, but is it…